/* [project]/src/app/services/services.css [app-client] (css) */
body {
  background: #f8f6ff;
  margin: 0;
  padding: 0;
  font-family: Poppins, sans-serif;
}

.page-banner {
  background: url("/img/service.webp") center / cover no-repeat;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 220px;
  display: flex;
  position: relative;
}

.page-banner:before {
  content: "";
  background: rgba(0, 0, 0, .55);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.page-banner h1 {
  color: #fff;
  text-transform: uppercase;
  z-index: 2;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  position: relative;
}

.hero {
  background: #f8f6ff;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 60px 5%;
  display: flex;
}

.hero-content {
  max-width: 48%;
}

.hero h1 {
  color: #000;
  margin-bottom: 15px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
}

.hero h1 span {
  color: #7a4eff;
  transition: opacity .5s;
}

.hero p {
  color: #555;
  margin: 15px 0 25px;
  font-size: 15px;
  line-height: 1.6;
}

.hero button {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(90deg, #7a4eff, #4b24d6);
  border: none;
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  transition: all .3s;
  box-shadow: 0 4px 15px rgba(122, 78, 255, .4);
}

.hero button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(122, 78, 255, .6);
}

.guarantee {
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
  margin-top: 20px;
  display: flex;
}

.guarantee span {
  color: #111;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
}

.guarantee span i {
  color: #7a4eff;
  font-size: 18px;
}

.hero img {
  border-radius: 12px;
  flex-shrink: 0;
  width: 600px;
}

.services {
  text-align: center;
  background: #fff;
  padding: 30px 4%;
}

.services h2 {
  color: #111;
  text-transform: uppercase;
  margin-bottom: 50px;
  font-size: 30px;
  font-weight: 800;
}

.service-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  display: grid;
}

.service-box {
  cursor: pointer;
  border-radius: 16px;
  padding: 20px;
  text-decoration: none;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  width: 100% !important;
}

.service-box img {
  object-fit: cover;
  border-radius: 50%;
  width: 200px;
  height: 200px;
}

.service-box:after {
  content: "";
  transform-origin: 0;
  background: linear-gradient(90deg, #7a4eff, #4b24d6);
  width: 100%;
  height: 5px;
  transition: transform .3s;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
}

.service-box:hover:after {
  transform: scaleX(1);
}

.service-box i {
  color: #7a4eff;
  background: #efeaff;
  border-radius: 50%;
  margin-bottom: 18px;
  padding: 18px;
  font-size: 40px;
  transition: all .3s;
}

.service-box:hover i {
  color: #fff;
  background: linear-gradient(90deg, #7a4eff, #4b24d6);
}

.service-box h3 {
  color: #222;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
}

.service-box p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .hero {
    text-align: center;
    flex-direction: column;
    padding: 40px 5%;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero img {
    width: 80%;
    margin-top: 30px;
  }

  .guarantee {
    justify-content: center;
  }
}

.tech-services {
  background: #faf7ff;
  padding: 60px 0 40px;
  font-family: Poppins, sans-serif;
}

.tech-services .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.tech-services .content {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  display: flex;
}

.text-side {
  text-align: left;
  flex: 550px;
}

.text-side h2 {
  color: #222;
  margin-bottom: 10px;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
}

.text-side h3 {
  color: #7a49e5;
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
}

.text-side p {
  color: #555;
  border-left: 3px solid #7be881;
  margin-bottom: 15px;
  padding-left: 10px;
  font-size: 1rem;
  line-height: 1.6;
}

.image-side {
  flex: 400px;
  justify-content: center;
  display: flex;
}

.image-side img {
  border-radius: 15px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
}

.btn-wrap {
  text-align: center;
  margin-top: 25px;
}

.btn-get {
  color: #fff;
  background: linear-gradient(90deg, #7a49e5, #a868ff);
  border-radius: 30px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
  display: inline-block;
}

.btn-get:hover {
  background: linear-gradient(90deg, #a868ff, #7a49e5);
  transform: translateY(-3px);
}

.why-choose {
  background: #fff;
  padding: 80px 5%;
  font-family: Poppins, sans-serif;
}

.why-choose h2 {
  text-align: center;
  color: #222;
  margin-bottom: 50px;
  font-size: 2rem;
  font-weight: 700;
}

.why-choose h2 span {
  color: #6f3cff;
}

.features-row {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}

.feature-box {
  text-align: center;
  background: #f7f5ff;
  border-radius: 16px;
  flex: calc(24.66% - 20px);
  min-width: 220px;
  padding: 25px 15px;
  transition: all .3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
}

.feature-box i {
  color: #fff;
  background: linear-gradient(135deg, #6f3cff, #9b6fff);
  border-radius: 50%;
  margin-bottom: 10px;
  padding: 15px;
  font-size: 1.8rem;
}

.feature-box h4 {
  color: #333;
  text-transform: uppercase;
  margin-top: 20px;
  font-size: .9rem;
  font-weight: 600;
}

.feature-box:hover {
  background: #ece6ff;
  transform: translateY(-5px);
}

.btn-center {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .feature-box {
    flex: calc(33.33% - 20px);
  }
}

@media (max-width: 600px) {
  .feature-box {
    flex: calc(50% - 20px);
  }
}

.help-section {
  background: #f9f7ff;
  padding: 80px 5%;
}

.help-container {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  display: flex;
}

.help-text {
  flex: 45%;
  min-width: 300px;
}

.help-text h2 {
  color: #222;
  margin-bottom: 20px;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.3;
}

.help-text h2 span {
  color: #7a4eff;
  border-left: 4px solid #7a4eff;
  padding-left: 12px;
}

.help-text p {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}

.help-options {
  flex: 45%;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  display: grid;
}

.help-box {
  text-align: center;
  cursor: pointer;
  background: #fff;
  border: 2px solid #ece5ff;
  border-radius: 16px;
  padding: 28px 22px;
  transition: all .3s;
}

.help-box:hover {
  border-color: #7a4eff;
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(122, 78, 255, .15);
}

.help-box i {
  color: #7a4eff;
  margin-bottom: 12px;
  font-size: 34px;
}

.help-box h3 {
  color: #222;
  font-size: 17px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .help-container {
    text-align: center;
    flex-direction: column;
  }

  .help-options {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
}

.image-slider-section {
  background: #fff;
  padding: 60px 5%;
}

.slider-container {
  border-radius: 18px;
  max-width: 100%;
  margin: auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, .15);
}

.slider {
  width: 100%;
  height: 480px;
  position: relative;
}

.slide {
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: opacity 1s ease-in-out;
  position: absolute;
}

.slide.active {
  opacity: 1;
}

.slide img {
  object-fit: cover;
  border-radius: 18px;
  width: 100%;
  height: 100%;
}

.dots {
  text-align: center;
  width: 100%;
  position: absolute;
  bottom: 15px;
}

.dots span {
  cursor: pointer;
  background: rgba(255, 255, 255, .7);
  border-radius: 50%;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  transition: background .3s;
  display: inline-block;
}

.dots span.active {
  background: #6a0dad;
}

@media (max-width: 768px) {
  .slider {
    height: 300px;
  }
}

.services-area {
  background: #fff;
  padding: 60px 0;
  font-family: Poppins, sans-serif;
}

.container {
  text-align: center;
  width: 90%;
  max-width: 1150px;
  margin: 0 auto;
}

.section-heading {
  color: #1a1a1a;
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 700;
}

.section-subtext {
  color: #555;
  margin-bottom: 40px;
  font-size: 1rem;
}

.service-cards {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  display: grid;
}

.service-card {
  text-align: left;
  background: #f9f9ff;
  border-radius: 18px;
  padding: 25px 20px 20px;
  transition: all .3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .08);
}

.service-card:hover {
  background: #fff;
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
}

.service-icon {
  color: #4b49e5;
  margin-bottom: 12px;
  font-size: 2rem;
  transition: color .3s;
}

.service-card:hover .service-icon {
  color: #ff6b35;
}

.service-category {
  color: #4b49e5;
  margin-bottom: 4px;
  font-size: .95rem;
  font-weight: 600;
}

.service-title {
  color: #222;
  margin-bottom: 10px;
  font-size: 1.3rem;
  font-weight: 700;
}

.service-text {
  color: #555;
  margin-bottom: 15px;
  font-size: .95rem;
  line-height: 1.5;
}

.service-image {
  object-fit: cover;
  border-radius: 12px;
  width: 100%;
  height: 180px;
  transition: transform .3s;
}

.service-card:hover .service-image {
  transform: scale(1.03);
}

.faq-modern {
  background: linear-gradient(#fafafa 0%, #fff 100%);
  padding: 40px 20px;
  font-family: Poppins, sans-serif;
}

.faq-heading {
  text-align: left;
  color: #222;
  letter-spacing: -.5px;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 700;
}

.faq-heading span {
  color: #5a2d91;
}

.faq-container {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  display: grid;
}

.faq-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  transition: all .3s;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
}

.faq-box:hover {
  border-color: #5a2d91;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(90, 45, 145, .12);
}

.faq-toggle {
  text-align: left;
  color: #333;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
  position: relative;
}

.faq-toggle span:before {
  content: "•";
  color: #5a2d91;
  vertical-align: middle;
  margin-right: 8px;
  font-size: 22px;
}

.faq-content {
  background: #faf8ff;
  max-height: 0;
  padding: 0 20px;
  transition: all .4s;
  overflow: hidden;
}

.faq-box.active .faq-content {
  max-height: 300px;
  padding: 8px 20px 14px;
}

.faq-content p {
  color: #555;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .faq-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .faq-heading {
    text-align: center;
    font-size: 26px;
  }

  .faq-box {
    border-radius: 10px;
  }
}

.testimonial-area {
  background: linear-gradient(#fff 0%, #f9f7ff 100%);
  padding: 30px 20px;
  font-family: Poppins, sans-serif;
}

.testimonial-heading {
  text-align: center;
  color: #222;
  font-size: 34px;
  font-weight: 700;
}

.testimonial-heading span {
  color: #6a2dcf;
}

.testimonial-wrapper {
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  display: grid;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 25px;
  transition: all .3s;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
}

.testimonial-card:hover {
  border-color: #6a2dcf;
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(106, 45, 207, .12);
}

.quote-icon {
  color: #6a2dcf;
  opacity: .2;
  font-size: 38px;
  position: absolute;
  top: 15px;
  left: 20px;
}

.testimonial-text {
  color: #555;
  margin-top: 30px;
  margin-bottom: 25px;
  padding-left: 10px;
  font-size: 15px;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-bottom {
  align-items: center;
  gap: 15px;
  display: flex;
}

.client-img {
  object-fit: cover;
  border: 2px solid #6a2dcf;
  border-radius: 50%;
  width: 55px;
  height: 55px;
}

.testimonial-bottom h4 {
  color: #333;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.testimonial-bottom p {
  color: #777;
  margin: 2px 0;
  font-size: 14px;
}

.rating {
  color: #fbb034;
  font-size: 14px;
}

@media (max-width: 1200px) {
  .testimonial-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .testimonial-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonial-wrapper {
    grid-template-columns: 1fr;
  }

  .testimonial-heading {
    font-size: 28px;
  }
}

.enquiry-section {
  background: linear-gradient(135deg, #f7f5ff, #fff);
  padding: 60px 20px;
  font-family: Poppins, sans-serif;
}

.enquiry-container {
  background: #fff;
  border-radius: 18px;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  display: flex;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, .08);
}

.enquiry-img {
  flex: 1;
  min-height: 420px;
}

.enquiry-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.enquiry-form {
  flex: 1;
  padding: 40px;
}

.enquiry-form h2 {
  color: #222;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 700;
}

.enquiry-form h2 span {
  color: #6a2dcf;
}

.enquiry-form p {
  color: #666;
  margin-bottom: 25px;
  font-size: 15px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input, .form-group textarea {
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  transition: all .3s;
}

.form-group input:focus, .form-group textarea:focus {
  border-color: #6a2dcf;
  box-shadow: 0 0 6px rgba(106, 45, 207, .15);
}

.btn-submit {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #6a2dcf, #84e);
  border: none;
  border-radius: 30px;
  padding: 12px 26px;
  font-size: 16px;
  font-weight: 600;
  transition: all .3s;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #84e, #6a2dcf);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(106, 45, 207, .3);
}

@media (max-width: 992px) {
  .enquiry-container {
    text-align: center;
    flex-direction: column;
  }

  .enquiry-img {
    height: 300px;
  }

  .enquiry-form {
    padding: 30px 20px;
  }

  .enquiry-form h2 {
    font-size: 24px;
  }
}

.blog-section {
  background: linear-gradient(#fff 0%, #f9f7ff 100%);
  padding: 70px 20px;
  font-family: Poppins, sans-serif;
}

.blog-heading {
  text-align: center;
  color: #222;
  font-size: 34px;
  font-weight: 700;
}

.blog-heading span {
  color: #6a2dcf;
}

.blog-subtext {
  text-align: center;
  color: #666;
  margin-bottom: 45px;
  font-size: 15px;
}

.blog-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  display: grid;
}

.blog-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  transition: all .3s;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .06);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(106, 45, 207, .15);
}

.blog-img img {
  object-fit: cover;
  width: 100%;
  height: 190px;
  transition: transform .4s;
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  color: #222;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
}

.blog-content p {
  color: #555;
  margin-bottom: 12px;
  font-size: 14px;
}

.read-more {
  color: #6a2dcf;
  font-weight: 500;
  text-decoration: none;
  transition: color .3s;
}

.read-more:hover {
  color: #84e;
}

.view-more-btn {
  text-align: center;
  margin-top: 40px;
}

.btn-view {
  color: #fff;
  background: linear-gradient(135deg, #6a2dcf, #84e);
  border-radius: 30px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
}

.btn-view:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(106, 45, 207, .3);
}

@media (max-width: 1200px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-heading {
    font-size: 28px;
  }
}

.tech-support-wrapper {
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
}

.tech-support-content {
  flex: 1;
}

.tech-support-content h2 {
  color: #222;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 700;
}

.tech-support-content p {
  color: #555;
  margin-bottom: 40px;
  font-size: 16px;
}

.tech-support-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 30px;
  display: grid;
}

.tech-box {
  background: #fff;
  border-radius: 10px;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}

.tech-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, .15);
}

.tech-box i {
  color: #e74c3c;
  background: rgba(231, 76, 60, .1);
  border-radius: 8px;
  padding: 10px;
  font-size: 26px;
}

.tech-box h4 {
  color: #222;
  margin: 0 0 5px;
  font-size: 18px;
}

.tech-box p {
  color: #555;
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.btn-schedule {
  color: #fff;
  background: #e74c3c;
  border-radius: 6px;
  padding: 12px 25px;
  font-weight: 600;
  text-decoration: none;
  transition: background .3s;
  display: inline-block;
}

.btn-schedule:hover {
  background: #c0392b;
}

.tech-support-right {
  background: #f8f6ff;
  border-radius: 10px;
  flex: 1;
  min-height: 400px;
}

@media (max-width: 991px) {
  .tech-support-wrapper {
    text-align: center;
    flex-direction: column;
  }

  .tech-support-grid {
    grid-template-columns: 1fr;
  }

  .tech-box {
    text-align: left;
    justify-content: center;
  }

  .tech-support-right {
    display: none;
  }
}

.review-section {
  background-color: #e6f5f9;
  max-width: 100%;
  margin: 20px auto;
  padding: 50px;
}

.review-section h2 {
  color: #222;
  margin-bottom: 40px;
  font-size: 36px;
  font-weight: 700;
}

.reviews {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  display: flex;
}

.review-box {
  background-color: #fff;
  border-radius: 10px;
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  padding: 20px;
  transition: transform .3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}

.review-box:hover {
  transform: translateY(-5px);
}

.review-name {
  color: #777;
  margin-bottom: 10px;
  font-size: 14px;
}

.review-title {
  color: #222;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}

.review-text {
  color: #444;
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.5;
}

.review-stars i {
  color: #00b67a;
  margin-right: 3px;
  font-size: 18px;
}

@media (max-width: 992px) {
  .reviews {
    justify-content: center;
  }

  .review-box {
    max-width: 45%;
  }
}

@media (max-width: 600px) {
  .review-box {
    max-width: 100%;
  }

  .review-section h2 {
    font-size: 28px;
  }
}

.cta-section {
  color: #fff;
  background-color: #4fb9d3;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 40px 20px;
  display: flex;
}

.cta-section h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.cta-btn {
  color: #fff;
  cursor: pointer;
  background: none;
  border: 2px solid #fff;
  border-radius: 6px;
  padding: 10px 25px;
  font-size: 16px;
  font-weight: 600;
  transition: all .3s;
}

.cta-btn:hover {
  color: #4fb9d3;
  background-color: #fff;
}

@media (max-width: 768px) {
  .cta-section {
    text-align: center;
    flex-direction: column;
    gap: 20px;
  }
}

.geek-benefits {
  text-align: center;
  background-color: #fff;
  padding: 20px 0;
}

.benefit-title {
  color: #4b1f8a;
  margin-bottom: 35px;
  font-size: 32px;
  font-weight: 700;
}

.benefit-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  display: grid;
}

.benefit-box {
  background: #fff;
  padding: 0;
}

.benefit-img img {
  width: 80px;
  height: 80px;
}

.benefit-box h3 {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
  font-family: Oxanium SemiBold, sans-serif !important;
}

.benefit-box p {
  color: #555;
  font-family: sans-serif;
  font-size: 15px;
  line-height: 1.3;
}

@media (max-width: 992px) {
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .benefit-title {
    margin-bottom: 35px;
    font-size: 26px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .benefit-img img {
    width: 70px;
  }
}

.services-section {
  background-color: #fff;
  padding: 30px 0;
}

.services-container {
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 35px;
  display: flex;
}

.service-boxq {
  text-align: center;
  width: 200px;
  color: inherit;
  text-decoration: none;
}

.serviceimg {
  background: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 140px;
  padding: 4px;
  transition: all .4s;
  display: flex;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
}

.serviceimg:hover {
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(0, 200, 255, .6);
}

.serviceimg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.service-boxq p {
  color: #333;
  margin-top: 15px;
  margin-right: 44px;
  font-size: 15px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .service-boxq {
    width: 33.33%;
    max-width: 180px;
  }

  .serviceimg {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 480px) {
  .service-boxq {
    width: 33%;
    max-width: none;
  }

  .serviceimg {
    width: 100px;
    height: 100px;
  }

  .service-boxq p {
    margin-right: 11px;
    font-size: 14px;
  }
}

.benefit-img {
  justify-content: center;
  display: flex;
}

/*# sourceMappingURL=src_app_services_services_df702f0b.css.map*/