/* ========================================= SERVICE PAGE CUSTOM STYLES (MATCHED TO IMAGE) ========================================= */
:root {
  --bg-light-blue: #ceedff;
  --card-bg: #ceedff;
  --text-dark: #1a1a1a;
}
.section-padding {
  padding: 80px 0;
}
.section-padding-top {
  padding-top: 80px;
}
.section-padding-bottom {
  padding-bottom: 80px;
}
.section-title {
  color: var(--text-dark);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
}
.text-left {
  text-align: left;
}
.mt-4 {
  margin-top: 30px;
}
.sp-subtitle {
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
  display: block;
  margin-bottom: 10px;
}
.btn-primary {
  display: inline-block;
  background-color: var(--primary);
  color: #fff;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background-color: #0482d6;
  box-shadow: 0 4px 12px rgba(5, 158, 255, 0.3);
}
.service-page-hero {
  height: 350px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-page-hero .hero-title {
  color: #ffffff;
  font-size: 40px;
  font-weight: 900;
  margin: 0;
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.9),
    0px 0px 20px rgba(0, 0, 0, 0.7);
  letter-spacing: 1px;
  text-align: center;
}

/* Service section */
.services-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--blue-color);
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.service-card-wrapper {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.service-card-wrapper.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 29%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-icon {
  width: 100%;
  height: 60px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  transform: scale(0);
  transition: transform 0.3s ease 0.1s;
}

.service-card:hover .service-icon {
  transform: scale(1);
}

.service-content {
  padding: 25px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue-color);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}



.view-all-wrapper {
  text-align: center;
  margin-top: 30px;
}

.btn-view-all {
  display: inline-block;
  padding: 15px 40px;
  background: var(--topbar-blue);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid var(--topbar-blue);
}

.btn-view-all:hover {
  background: transparent;
  color: var(--green-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(119, 211, 63, 0.3);
}

.no-services {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 10px;
  color: #666;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .service-img-wrapper {
    height: 250px;
  }
}





/* cta csss */
.container-1200 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-banner {
  margin: 30px 0px;
}

.cta-container {
  background: linear-gradient(135deg, var(--blue-color) 0%, #1a237e 100%);
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  padding: 25px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  border-radius: 15px;
}

.cta-content h2 {
  color: white;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  max-width: 500px;
}





/* CTA ENDS */
.testimonials-section {
  padding: 80px 0;
  background: #ecffe0;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-subtitle {
  font-size: 18px;
  color: #000000;
  max-width: 700px;
  margin: 0 auto;
}

.testimonials-slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0 60px;
}

.testimonials-slider {
  display: flex;
  transition: transform 0.5s ease;
  gap: 30px;
}

.testimonial-card {
  min-width: calc(33.333% - 20px);
  background: white;
  border-radius: 15px;
  padding: 20px 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 4px solid var(--green-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue-color);
  text-align: center;
  margin-bottom: 15px;
}

.testimonial-divider {
  width: 50px;
  height: 3px;
  background: var(--green-color);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  text-align: center;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.star {
  color: #ffc107;
  font-size: 18px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: var(--blue-color);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slider-arrow:hover {
  background: var(--green-color);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
  left: 0;
}

.slider-arrow.next {
  right: 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--green-color);
  width: 30px;
  border-radius: 6px;
}

.dot:hover {
  background: var(--green-color);
}

/* Responsive */
@media (max-width: 992px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .cta-content p {
    max-width: 100%;
  }

  .testimonials-slider-wrapper {
    padding: 0 50px;
  }

  .testimonial-card {
    min-width: calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }

  .testimonial-card {
    min-width: 100%;
  }

  .testimonials-slider-wrapper {
    padding: 0 40px;
  }
}

@media (max-width: 480px) {
  .cta-banner {
    padding: 40px 0;
  }

  .cta-content h2 {
    font-size: 26px;
  }

  .testimonials-slider-wrapper {
    padding: 0 35px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

.cta-banner {
  padding: 30px 0;
  background: #0b223b;
  margin-bottom: 40px;
}

.cta-banner > .container-1200 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cta-banner > .container-1200 > div > h2 {
  color: var(--topbar-blue);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.cta-banner > .container-1200 > div > p {
  color: white;
  font-size: 20px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-banner > .container-1200 > div > p::before {
  content: "⏱";
  font-size: 16px;
}

.btn-cta {
  background: var(--topbar-blue);
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-cta:hover {
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-title {
    font-size: 36px;
  }

  .services-section > .container-1200 > ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 28px;
  }

  .services-section > .container-1200 > h2 {
    font-size: 26px;
  }

  .cta-banner > .container-1200 {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .cta-banner > .container-1200 > div > h2 {
    font-size: 20px;
  }
}







.services-section {
  padding: 80px 0;
  background: white;
  text-align: center;
}

.services-section p {
  font-size: 20px;
  color: #000;
  margin-bottom: 30px;
}

.services-section > .container-1200 > p:first-of-type::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 3px;
  background: #f5a623;
  border-radius: 2px;
}

/* Heading */
.services-section > .container-1200 > h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

/* Services Grid */
.services-section > .container-1200 > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.services-section > .container-1200 > ul > li > a {
  display: block;
  text-decoration: none;
}

.services-section > .container-1200 > ul > li > a > img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 4px solid white;
  position: relative;
  z-index: 2;
}

.services-section > .container-1200 > ul > li > a > h3 {
  font-size: 16px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  padding: 10px 15px;
  background: #662d91;
  position: relative;
  z-index: 2;
}

.services-section > .container-1200 > ul > li.no-service {
  grid-column: 1 / -1;
  background: #f8f9fa;
  padding: 60px 20px;
}

.services-section > .container-1200 > ul > li.no-service > p {
  color: #666;
  font-size: 18px;
  margin: 0;
}

.view-all-wrapper {
  text-align: center;
}

.btn-view-all {
  display: inline-block;
  padding: 12px 30px;
  background: #4bc8ed;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid #4bc8ed;
}

.btn-view-all:hover {
  background: transparent;
  border: 2px solid #0b223b;
  color: #0b223b;
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .services-section {
    padding: 60px 0;
  }

  .services-section > .container-1200 > ul {
    grid-template-columns: 1fr;
  }

  .services-section > .container-1200 > ul > li > a > img {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 768px) {
  .services-section > .container-1200 > h2 {
    font-size: 26px;
  }
}
@media (max-width: 992px) {
  .services-section > .container-1200 > ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

.btn-view-all {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

#servicesGrid li a {
  display: block;
  border-radius: 0;
  border-bottom: 1px solid #000;
  padding-bottom: 30px;
}

#servicesGrid li a img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}
