/* // typing area start */
.typing-area {
  width: 100%;
  position: relative;
  margin-bottom: 350px !important;
}
@media screen and (max-width: 767px) {
  .typing-area {
    display: none;
  }
}
.typing-area::before {
  content: "";
  border-top: 500px solid black;
  border-right: 2080px solid transparent;
  position: absolute;
  top: -3px;
}
.typing-area .typing {
  gap: 10px;
}
.typing-area .typing .text {
  display: block;
  font-size: 43px;
  line-height: 60px;
  position: relative;
}
@media screen and (max-width: 400px) {
  .typing-area .typing .text {
    display: block;
    font-size: 25px !important;
    line-height: 73px !important;
    position: relative;
  }
}
.typing-area .typing .first-text {
  color: var(--green-color);
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #fff;
}
@media screen and (max-width: 991px) {
  .typing-area .typing .first-text {
    color: var(--green-color);
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: #fff;
  }
}
.typing-area .typing .second-text {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
}
.typing-area .typing .second-text::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  background-color: var(--black-color);
  border-left: 1px solid white;
  animation: type 15s steps(30) infinite;
}
@media screen and (max-width: 400px) {
  .typing-area .typing .second-text::before {
    height: 50% !important;
    top: 18px !important;
  }
}
.typing-area .logo-animate {
  position: absolute;
  right: 360px;
  top: 176px;
  z-index: -1;
  animation: upanimation 3s;
}
.typing-area .logo-animate::before {
  content: "";
  position: absolute;
  width: 116px;
  height: 419px;
  background: #fff;
  bottom: -173px;
  right: 130px;
  rotate: 79deg;
}
@media screen and (max-width: 400px) {
  .typing-area .logo-animate {
    display: none;
  }
}
.typing-area img {
  width: 350px;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 7px solid var(--green-color);
}

.mobile-typing-area {
  display: none;
  overflow-x: hidden;
  background-color: var(--black-color);
  position: relative;
  top: -5px;
}
@media screen and (max-width: 767px) {
  .mobile-typing-area {
    display: block;
  }
}
.mobile-typing-area .mobile-typing {
  gap: 10px;
}
.mobile-typing-area .mobile-typing .text {
  display: block;
  font-size: 43px;
  line-height: 60px;
  position: relative;
}
@media screen and (max-width: 400px) {
  .mobile-typing-area .mobile-typing .text {
    display: block;
    font-size: 18px !important;
    line-height: 73px !important;
    position: relative;
  }
}
@media screen and (max-width: 360px) {
  .mobile-typing-area .mobile-typing .text {
    font-size: 15px !important;
  }
}
.mobile-typing-area .mobile-typing .mobile-first-text {
  color: var(--green-color);
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #fff;
}
@media screen and (max-width: 991px) {
  .mobile-typing-area .mobile-typing .mobile-first-text {
    color: var(--green-color);
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: #fff;
  }
}
.mobile-typing-area .mobile-typing .mobile-second-text {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
}
.mobile-typing-area .mobile-typing .mobile-second-text::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  background-color: var(--black-color);
  border-left: 1px solid white;
  animation: type 15s steps(30) infinite;
}
@media screen and (max-width: 400px) {
  .mobile-typing-area .mobile-typing .mobile-second-text::before {
    height: 50% !important;
    top: 18px !important;
  }
}

/* // typing area end */
/* // service area start */
.service-area {
  margin-top: 500px !important;
}
@media screen and (max-width: 400px) {
  .service-area {
    margin-top: 0px !important;
  }
}
.service-area .services {
  margin-top: 100px;
}
@media screen and (max-width: 992px) {
  .service-area .services {
    gap: 11px !important;
  }
}
.service-area .service-items {
  overflow: hidden;
  width: 100%;
  height: 450px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-area .service1 {
  background-image: var(--service-image);
  margin-bottom: 60px;
  border-radius: 250px 0 0 250px;
  animation: upanimation linear;
  animation-timeline: view();
  animation-range: entry 0% cover 35%;
}
.service-area .service1 .image {
  width: 30%;
}
.service-area .service1 .image img {
  max-width: 400px;
  max-height: 100%;
  border-radius: 50%;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  left: 30px;
}
.service-area .service1 .description {
  width: 70%;
  max-width: 800px;
  max-height: 100%;
  border-radius: 50%;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  left: 30px;
}
@media screen and (max-width: 992px) {
  .service-area .service1 {
    width: 49% !important;
    height: 435px !important;
  }
}
@media screen and (max-width: 768px) {
  .service-area .service1 {
    width: 100% !important;
    height: 314px !important;
  }
}
@media screen and (max-width: 509px) {
  .service-area .service1 {
    height: 373px !important;
  }
}
.service-area .service1 .service-heading h5 {
  font-size: 30px;
  text-transform: uppercase;
  color: var(--green-color);
  display: inline-block;
  font-weight: 600;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #000;
  letter-spacing: 3px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.service-area .service1 .service-details p {
  margin: 0px 0px 20px 0px;
  font-size: 19px;
  line-height: 34px;
  color: #000;
  font-family: "Poppins", serif;
  width: 100%;
  text-transform: capitalize;
  padding-top: 20px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .service-area .service1 .service-details p {
    width: 100% !important;
  }
}
@media screen and (max-width: 400px) {
  .service-area .service1 .service-details p {
    font-size: 16px !important;
  }
}
.service-area .service1 .button-area a {
  background-color: var(--green-color);
  padding: 4px 15px;
  border-radius: 7px;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
}
.service-area .service1 .button-area a:hover {
  color: #000 !important;
}
@media screen and (max-width: 991px) {
  .service-area .service1 .button-area a {
    font-size: 12px !important;
  }
}
.service-area .service-button a {
  background-color: var(--green-color);
  padding: 4px 15px;
  border-radius: 7px;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
}
.service-area .service-button a:hover {
  color: #000 !important;
}
@media screen and (max-width: 991px) {
  .service-area .service-button a {
    font-size: 14px !important;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--black-color);
}
@media screen and (max-width: 360px) {
  .section-title h2 {
    font-size: 2rem !important;
  }
}

.section-title p {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--black-color);
}

/*
        * Grid Layouts
        */
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/*
        * Card Styles
        */
.service-card,
.pricing-card {
  background-color: var(--white-color);
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease-in-out;
}

.service-card:hover,
.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.highlight {
  border: 4px solid var(--green-color);
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 360px) {
  .service-card h3 {
    font-size: 1.3rem !important;
  }
}

.web-design-header,
.digital-marketing-header {
  color: var(--green-color);
}

/*
        * Skill Section Styles
        */
.skill-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.skill-item {
  display: flex;
  flex-direction: column;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
}

.skill-name {
  font-size: 1rem;
  font-weight: 500;
  color: var(--black-color);
}

.skill-percentage {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--black-color);
}

.progress-bar-container {
  width: 100%;
  background-color: #e5e7eb;
  /* Keeping a light gray for contrast */
  border-radius: 9999px;
  overflow: hidden;
}

.progress-bar {
  height: 1.5rem;
  border-radius: 9999px;
  text-align: right;
  transition: width 1s ease-in-out;
  padding-right: 0.5rem;
  color: var(--white-color);
  font-weight: bold;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.progress-bar-web,
.progress-bar-digital {
  background-color: var(--green-color);
}

/* // service area end */
/* // pricing area start */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--black-color);
}
.section-title p {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--black-color);
}

.pricing-card {
  background-color: var(--white-color);
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: var(--box-shadow);
  height: 570px;
  transition: transform 0.3s ease-in-out;
}
.pricing-card:hover {
  transform: translateY(-10px);
}
.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.pricing-card .subtitle {
  color: var(--black-color);
  margin-bottom: 1rem;
}
.pricing-card .price-display {
  display: flex;
  align-items: baseline;
  color: var(--black-color);
  margin-bottom: 1.5rem;
}
.pricing-card .price-display .price {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}
.pricing-card .price-display .period {
  margin-left: 0.25rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--black-color);
}
.pricing-card .features-list {
  color: var(--black-color);
  text-align: left;
  width: 100%;
  margin-bottom: 1.5rem;
}
.pricing-card .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}
.pricing-card .features-list li svg {
  height: 1.25rem;
  width: 1.25rem;
  color: var(--green-color);
  margin-right: 0.5rem;
}
.pricing-card .cta-button {
  width: 100%;
  background-color: var(--green-color);
  color: var(--white-color);
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: background-color 0.3s;
}
@media screen and (max-width: 360px) {
  .pricing-card .cta-button {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
  }
}
.pricing-card .cta-button:hover {
  background-color: #71B300;
}
.pricing-card .cta-button .discount-price {
  text-decoration: line-through;
  color: #888;
  font-size: 0.875rem;
  margin-right: 0.5rem;
}
.pricing-card .cta-button .section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.pricing-card .cta-button .section-title h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #000;
}
.pricing-card .cta-button .section-title p {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: #000;
}
.pricing-card .cta-button .pricing-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 3px 10px #91D503;
  transition: transform 0.3s ease-in-out;
}
.pricing-card .cta-button .pricing-card:hover {
  transform: translateY(-10px);
}
.pricing-card .cta-button .pricing-card h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.pricing-card .cta-button .pricing-card .subtitle {
  color: #000;
  margin-bottom: 1rem;
}
.pricing-card .cta-button .pricing-card .price-display {
  display: flex;
  align-items: baseline;
  color: #000;
  margin-bottom: 1.5rem;
}
.pricing-card .cta-button .pricing-card .price-display .price {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}
.pricing-card .cta-button .pricing-card .price-display .period {
  margin-left: 0.25rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
}
.pricing-card .cta-button .pricing-card .features-list {
  color: #000;
  text-align: left;
  width: 100%;
  margin-bottom: 1.5rem;
}
.pricing-card .cta-button .pricing-card .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}
.pricing-card .cta-button .pricing-card .features-list li svg {
  height: 1.25rem;
  width: 1.25rem;
  color: #91D503;
  margin-right: 0.5rem;
}
.pricing-card .cta-button .pricing-card .cta-button {
  width: 100%;
  background-color: #91D503;
  color: #fff;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: background-color 0.3s;
}
.pricing-card .cta-button .pricing-card .cta-button:hover {
  background-color: #71B300;
}
.pricing-card .cta-button .discount-price {
  text-decoration: line-through;
  color: #888;
  font-size: 0.875rem;
  margin-right: 0.5rem;
}

/* // pricing area end */
/* // footer area start */
footer {
  background-color: #000;
}
footer .footer-area .upper-area .text-footer h2 {
  font-size: clamp(14px, 100vw, 50px);
  text-transform: uppercase;
  color: #000;
  -webkit-text-stroke-color: var(--green-color);
  -webkit-text-stroke-width: 2.5px;
}
footer .footer-area .upper-area .text-footer P {
  font-size: clamp(12px, 100vw, 18px);
  color: #ccc;
  margin-top: 20px;
}
footer .footer-area .upper-area .round-footer {
  text-align: center;
}
footer .footer-area .upper-area .round-footer img {
  width: 40%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  animation: rotate 5s linear infinite;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
footer .footer-area .down-area {
  margin-top: 100px;
}
footer .footer-area .down-area .social-media h5 {
  font-size: 25px;
  text-transform: capitalize;
  color: var(--white-color);
}
footer .footer-area .down-area .social-media .icons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
footer .footer-area .down-area .social-media .icons a {
  text-decoration: none;
}
footer .footer-area .down-area .social-media .icons a i {
  font-size: 20px;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  border-radius: 100%;
  color: var(--black-color);
  background-color: var(--white-color);
  transition: all ease-in-out 0.5s;
}
footer .footer-area .down-area .social-media .icons a i:hover {
  background-color: var(--green-color);
  color: var(--black-color);
}
footer .footer-area .down-area .accept h5 {
  font-size: 25px;
  color: var(--white-color);
  margin-bottom: 15px;
}
footer .footer-area .down-area .accept img {
  width: 800px;
}
footer .footer-area .down-area .accept p {
  font-size: 20px;
  color: var(--white-color);
  text-transform: capitalize;
  margin-top: 15px;
}

/* // footer area end *//*# sourceMappingURL=service.css.map */