
:root {
  --primary: #172e73;
  --accent: #00fca8;
  --white: #fafffd;
  --radius: 1.125rem; 
  --shadow: 0 0.125rem 0.5rem rgba(23,46,115,0.07);
  --transition: 0.2s;
  --dark: #0d1321;
}


html {
  scroll-behavior: smooth;
  background: var(--white);
}


body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: transparent;
  color: var(--primary);
  line-height: 1.6;
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

.container {
  width: 90%;
  max-width: 75rem; 
  margin: 0 auto;
}


.main-header {
  background: rgba(248, 246, 246, 0.95);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 0;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  object-fit: cover;
}

.company-name {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.0625rem;
  color: var(--primary);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2rem;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-link.active,
.nav-link:hover {
  color: var(--accent);
}


.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-bg {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: -1;
  overflow: hidden;
}

.hero-bg video,
.hero-bg img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  filter: brightness(0.5) blur(0.0625rem);
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: linear-gradient(180deg, rgba(23,46,115,0.45) 0%, rgba(0,0,0,0.2) 100%);
  pointer-events: none;
}

.hero-content {
  max-width: 60rem; 
  margin: 0 auto;
  text-align: center;
  color: var(--white);
  padding-left: 1rem; 
  padding-right: 1rem; 
}

.headline {
  white-space: nowrap;
  margin: 0 auto 1rem auto;
  overflow: show;
  text-overflow: ellipsis;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  margin-bottom: 1.125rem;
  color: var(--white);
  text-shadow: 0 0.125rem 0.5rem rgba(23,46,115,0.18);
  text-align: center;
  padding-right: 1.125rem;
  padding-left: 1.125rem;  
}

.hero-highlight {
  color: var(--accent);
  font-weight: 900;
  font-size: 2.2rem;
  display: block;
  margin-top: 0.5rem;
}

.subheadline {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #e6f9f3;
  text-shadow: 0 0.125rem 0.5rem rgba(23,46,115,0.10);
}

.hero-intro {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--white);
}

.cta-btn {
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: var(--radius);
  padding: 0.875rem 2.25rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  box-shadow: 0 0.125rem 0.5rem rgba(0,252,168,0.07);
  display: inline-block;
}

.cta-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-0.125rem) scale(1.04);
}


.services-section {
  background: var(--white);
  padding: 4.375rem 0 3.75rem 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.25rem;
  color: var(--primary);
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16.25rem, 1fr));
  gap: 2rem;
  justify-content: center;
}

.service-card {
  background: #fafffd;
  border: 0.1563rem solid #767777;
  border-radius: 1.375rem;
  box-shadow: 0 0.25rem 1.5rem rgba(23,46,115,0.07), 0 0.0938rem 0.5rem rgba(0,252,168,0.07);
  padding: 2rem 1.5rem 1.75rem 1.5rem;
  margin-bottom: 2rem;
  transition: box-shadow 0.3s, border-color 0.3s, background 0.3s;
  position: relative;
  z-index: 1;
  text-align: center;
}

.service-card:hover {
  border-color: #00fca8;
  box-shadow: 0 0.5rem 2rem rgba(23,46,115,0.13), 0 0.1875rem 1rem rgba(0,252,168,0.13);
  background: #f4f8ff;
}

.service-card .service-icon {
  margin-bottom: 1.125rem;
}

.service-icon img {
  width: 3.75rem;
  height: 3.75rem;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1.125rem;
  background: #fff;
  border: 0.125rem solid #767777;
  box-shadow: var(--shadow);
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: var(--primary);
  font-size: 1.15rem;
  font-weight: 700;
}

.service-card p {
  color: #222;
  font-size: 1rem;
  margin-bottom: 0;
}

.services-cta {
  text-align: center;
  margin-top: 2.5rem;
}


.services-list-section {
  padding: 4.375rem 0 3.75rem 0;
  text-align: center;
  position: relative;
}

.services-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13.75rem, 1fr));
  gap: 2rem;
}

@media (min-width: 56.25rem) {
  .services-list-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.service-detail-card {
  padding: 1.375rem 1.0625rem 1.25rem 1.0625rem;
  font-size: 0.87em;
  margin-bottom: 1.375rem;
  border-radius: 0.9375rem;
  border: 0.0781rem solid #767777;
  background: #fafffd;
  box-shadow: 0 0.25rem 1.5rem rgba(23,46,115,0.10), 0 0.0938rem 0.5rem rgba(0,252,168,0.10);
  transition: box-shadow 0.3s, border-color 0.3s, background 0.3s;
  position: relative;
  z-index: 1;
}

.service-detail-card:hover {
  border-color: #00fca8;
  box-shadow: 0 0.5rem 2rem rgba(23,46,115,0.13), 0 0.1875rem 1rem rgba(0,252,168,0.13);
  background: #f4f8ff;
}

.service-detail-card h2 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.service-detail-card p {
  font-size: 0.97em;
  margin-bottom: 0.75rem;
}

.service-images-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.125rem;
  justify-items: center;
  border-radius: 0.875rem;
  overflow: hidden;
  background: #f4f8ff;
  border: 0.0781rem solid #767777;
  padding: 0.5rem;
}

.service-images-grid img {
  width: 100%;
  max-width: 7.5rem;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 1.125rem;
  box-shadow: 0 0.125rem 0.5rem rgba(23,46,115,0.07);
  background: #fff;
  border: 0.0781rem solid rgba(0,252,168,0.13);
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.2s;
}

.service-images-grid img:hover {
  border-color: #00fca8;
  box-shadow: 0 0.5rem 2rem rgba(23,46,115,0.13), 0 0.1875rem 1rem rgba(0,252,168,0.13);
  transform: scale(1.04) rotate(-2deg);
}

.services-pagination {
  width: 100%;
  text-align: left;
  position: relative;
  padding-bottom: 2rem;
}

.services-next-btn,
.services-prev-btn {
  margin: 1rem 0.5rem 0 0;
  padding: 0.5rem 1.25rem;
  font-size: 1rem;
  border-radius: 0.625rem;
  display: inline-block;
  float: none;
  color: #fff;
  font-weight: 700;
  border: none;
  cursor: pointer;
  background: linear-gradient(270deg, #00fca8, #172e73, #00fca8);
  background-size: 200% 100%;
  background-position: 0% 50%;
  transition: background-position 0.7s cubic-bezier(.4,0,.2,1), background 0.2s, transform 0.2s;
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.services-next-btn:hover,
.services-next-btn:focus {
  background-position: 100% 50%;
  transform: scale(1.07);
}

.services-prev-btn:hover,
.services-prev-btn:focus {
  background-position: -100% 50%;
  transform: scale(1.07);
}

.services-pagination::after {
  content: "";
  display: block;
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0;
  height: 3.5rem;
  background: #fff;
  border-radius: 1.75rem;
  z-index: 0;
  pointer-events: none;
}


.section-banner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 3rem 0;
  min-height: 7.5rem;
}

.section-banner img {
  max-width: 56.25rem;
  width: 100%;
  height: 7.5rem;
  object-fit: cover;
  border-radius: 2rem;
  box-shadow: var(--shadow);
}


.banner-blue-green {
  background: linear-gradient(120deg, #172e73 60%, #00fca8 100%);
}
.banner-green-white {
  background: linear-gradient(120deg, #00fca8 60%, #fafffd 100%);
}
.banner-blue-white {
  background: linear-gradient(120deg, #172e73 60%, #fafffd 100%);
}
.banner-green-blue {
  background: linear-gradient(120deg, var(--accent) 60%, var(--primary) 100%);
}


img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}


.about-media img {
  width: 100%;
  max-width: 25rem;
  height: auto;
  border-radius: 0.75rem;
  object-fit: cover;
  display: block;
}


.social-icons img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  transition: transform 0.2s;
}

.social-icons img:hover {
  transform: scale(1.1);
}


.fancy-img,
.logo img,
.service-icon img,
.about-media img,
.social-icons a img {
  border-radius: 40% / 30%;
  box-shadow: 0 0.25rem 1.5rem rgba(23,46,115,0.10), 0 0.0938rem 0.5rem rgba(0,252,168,0.07);
  border: 0.1563rem solid rgba(0,252,168,0.13);
  background: linear-gradient(135deg, #fff 70%, #e6f9f3 100%);
  transition: box-shadow 0.3s, transform 0.2s;
  position: relative;
  z-index: 1;
}


.logo img:hover,
.service-icon img:hover,
.about-media img:hover,
.social-icons a img:hover {
  box-shadow: 0 0.5rem 2rem rgba(23,46,115,0.18), 0 0.1875rem 1rem rgba(0,252,168,0.13);
  transform: scale(1.04) rotate(-2deg);
}


.about-media img::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  border-radius: 40% / 30%;
  pointer-events: none;
  box-shadow: 0 0 0 0.5rem rgba(0,252,168,0.07);
  z-index: 2;
}

.contact-modal {
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(23,46,115,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-content {
  background: #fff;
  border-radius: 1.125rem;
  box-shadow: 0 0.5rem 2rem rgba(23,46,115,0.18);
  padding: 2rem 1.75rem 1.5rem 1.75rem;
  max-width: 25rem;
  width: 90%;
  text-align: center;
  position: relative;
}
.close-modal {
  position: absolute;
  right: 1.125rem;
  top: 0.875rem;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
}
.modal-service-img {
  width: 5rem;
  height: 5rem;
  object-fit: cover;
  border-radius: 1.125rem;
  margin-bottom: 1rem;
  box-shadow: 0 0.125rem 0.5rem rgba(23,46,115,0.10);
}
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.125rem;
}
.channel-btn {
  display: block;
  padding: 0.75rem 0;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  color: #fff;
  transition: background 0.2s;
}
.channel-btn.whatsapp { background: #25D366; }
.channel-btn.email { background: #172E73; }
.channel-btn.linkedin { background: #0077b5; }
.channel-btn.facebook { background: #1877f3; }
.channel-btn:hover { filter: brightness(1.1); }

@media (max-width: 37.5rem) {
  .logo img {
    width: 2.25rem;
    height: 2.25rem;
  }
  .service-icon img {
    width: 3rem;
    height: 3rem;
  }
  .about-media img {
    max-width: 100%;
  }
  .social-icons img {
    width: 1.75rem;
    height: 1.75rem;
  }
}


.about-section {
  background: #fff;
  padding: 4.375rem 0 3.75rem 0;
}

.about-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  justify-content: center;
}

.about-text {
  flex: 1 1 20rem;
  min-width: 17.5rem;
  text-align: justify;
}

.about-media {
  flex: 1 1 20rem;
  min-width: 15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-media img,
.about-media video {
  width: 20rem;
  max-width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-section .about-flex {
  background: #fafffd;
  border: 0.1562rem solid #767777;
  border-radius: 1.375rem;
  box-shadow: 0 0.25rem 1.5rem rgba(23,46,115,0.07), 0 0.0938rem 0.5rem rgba(0,252,168,0.07);
  padding: 2.5rem 1.75rem;
  margin-bottom: 2rem;
  transition: box-shadow 0.3s, border-color 0.3s, background 0.3s;
  position: relative;
  z-index: 1;
}

.about-section .about-flex:hover {
  border-color: #00fca8;
  box-shadow: 0 0.5rem 2rem rgba(23,46,115,0.13), 0 0.1875rem 1rem rgba(0,252,168,0.13);
  background: #f4f8ff;
}

.about-media {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

.about-media .about-img {
  width: 15rem;
  height: 15rem;
  max-width: 100%;
  object-fit: cover;
  border-radius: 1.125rem;
  box-shadow: 0 0.125rem 0.5rem rgba(23,46,115,0.10);
  background: #fff;
  border: 0.0781rem solid rgba(0,252,168,0.13);
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.2s;
  display: block;
  margin: 0 0.75rem;
}

.about-media .about-img:hover {
  border-color: #00fca8;
  box-shadow: 0 0.5rem 2rem rgba(23,46,115,0.13), 0 0.1875rem 1rem rgba(0,252,168,0.13);
  transform: scale(1.04) rotate(-2deg);
}

@media (max-width: 43.75rem) {
  .about-media {
    flex-direction: column;
    gap: 1rem;
  }
}

.about-focus-list {
  margin: 1.125rem 0 1.5rem 1.5rem;
  padding-left: 1.125rem;
  color: var(--primary);
  font-size: 1.08rem;
  line-height: 1.7;
  list-style-type: disc;
}
.about-focus-list li {
  margin-bottom: 0.625rem;
}


.testimonials-section {
  background: #f4f8ff;
  padding: 4.375rem 0 3.75rem 0;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

blockquote {
  background: #f4f8ff;
  border-left: 0.1562rem solid var(--accent);
  border-radius: 1.375rem;
  border: 0.0781rem solid #767777;
  box-shadow: 0 0.25rem 1.5rem rgba(23,46,115,0.07), 0 0.0938rem 0.5rem rgba(0,252,168,0.07);
  padding: 1.5rem 2rem;
  font-style: italic;
  color: var(--primary);
  max-width: 26.25rem;
  margin: 0;
  transition: box-shadow 0.3s, border-color 0.3s, background 0.3s;
}

blockquote:hover {
  border-color: #00fca8;
  box-shadow: 0 0.5rem 2rem rgba(23,46,115,0.13), 0 0.1875rem 1rem rgba(0,252,168,0.13);
  background: #fafffd;
}

blockquote footer {
  margin-top: 1.125rem;
  font-size: 0.95rem;
  color: #555;
  font-style: normal;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: flex-start;
}

.testimonial-img {
  width: 7.5rem;
  height: 7.5rem;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 1.125rem;
  box-shadow: 0 0.125rem 0.5rem rgba(23,46,115,0.10);
  margin: 0 auto;
  background: #fff;
  border: 0.0781rem solid rgba(0,252,168,0.13);
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.2s;
  display: block;
}

.testimonial-img:hover {
  border-color: #00fca8;
  box-shadow: 0 0.5rem 2rem rgba(23,46,115,0.13), 0 0.1875rem 1rem rgba(0,252,168,0.13);
  transform: scale(1.04) rotate(-2deg);
}


.contact-section {
  background: linear-gradient(120deg, #fafffd 60%, #fafffd 100%);
  padding: 4.375rem 0 3.75rem 0;
}

.contact-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 15rem; 
  align-items: flex-start;
  justify-content: right
}

.contact-info {
  flex: 1 1 20rem;
  min-width: 16.25rem;
  max-width: 21.25rem;
  background: #fff;
  border-radius: 1.375rem;
  box-shadow: 0 0.25rem 1.5rem rgba(23,46,115,0.07);
  padding: 2rem 1.5rem;
  margin-bottom: 0;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 1.125rem 0 1.5rem 0;
}

.contact-info li {
  margin-bottom: 0.625rem;
  font-size: 1.08rem;
}

.contact-info .social-icons {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  justify-content: center;
  align-items: center;
  margin-top: 0.75rem;
}

.contact-form {
  flex: 1 1 26.25rem;
  min-width: 20rem;
  max-width: 32.5rem;
  background: #fafffd;
  border-radius: 1.375rem;
  box-shadow: 0 0.25rem 1.5rem rgba(23,46,115,0.07), 0 0.0938rem 0.5rem rgba(0,252,168,0.07);
  padding: 2.5rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
  margin-bottom: 0;
}

.contact-form h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: #172e73;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row input {
  flex: 1 1 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1.08rem;
  border-radius: 0.75rem;
  border: 0.0938rem solid #767777;
  background: #fff;
  color: #172e73;
  outline: none;
  transition: border 0.2s;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 0.0938rem solid #00fca8;
}

.contact-form button {
  margin-top: 0.5rem;
  padding: 0.875rem 0;
  font-size: 1.1rem;
  border-radius: 0.75rem;
  background: linear-gradient(90deg, #00fca8 0%, #172e73 100%);
  color: #fff;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.contact-form button:hover {
  background: linear-gradient(90deg, #172e73 0%, #00fca8 100%);
  transform: scale(1.03);
}

@media (max-width: 56.25rem) {
  .contact-flex {
    flex-direction: column;
    gap: 2rem;
  }
  .contact-info,
  .contact-form {
    max-width: 100%;
  }
  .form-row {
    flex-direction: column;
    gap: 0.75rem;
  }
}


.main-footer {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 1.75rem 0 1.125rem 0;
  font-size: 1rem;
  letter-spacing: 0.0625rem;
}


.main-footer .footer-quote {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.main-footer .footer-quote span {
  font-size: 1.25rem;
  font-style: italic;
  color: #172e73;
  letter-spacing: 0.05em;
}


@media (max-width: 56.25rem) {
  .about-flex,
  .contact-flex {
    flex-direction: column;
    gap: 2rem;
  }
  .services-grid {
    flex-direction: column;
    gap: 1.5rem;
  }
  .testimonials-grid {
    flex-direction: column;
    gap: 1.5rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .hero-content {
    padding-top: 2.5rem;
  }
  .about-img {
    width: 100%;
    max-width: 21.25rem;
  }
}

@media (max-width: 43.75rem) {
  .about-media {
    flex-direction: column;
    gap: 1rem;
  }
  .main-header {
    padding: 0;
  }
  .nav-container {
    flex-direction: column;
    gap: 1.125rem;
    padding: 1.125rem 0;
  }
  .logo img {
    width: 2.25rem;
    height: 2.25rem;
  }
  .company-name {
    font-size: 1.1rem;
  }
  .section-title {
    font-size: 1.3rem;
  }
  .service-card,
  .service-detail-card {
    padding: 1.125rem 0.5rem;
  }
  .contact-form {
    padding: 1.125rem 0.625rem;
  }
  .main-video-bg,
  .main-video-bg video,
  .main-video-overlay {
    height: 20rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .about-media {
    justify-content: flex-start;
  }
}

@media (max-width: 37.5rem) {
  .nav-container {
    flex-direction: column;
    gap: 1.125rem;
  }
  .logo img {
    width: 2.25rem;
    height: 2.25rem;
  }
  .company-name {
    font-size: 1.1rem;
  }
  .section-banner img {
    height: 6.25rem;
    border-radius: 1.125rem;
  }
  .about-media img,
  .about-media video {
    width: 100%;
  }
  .service-card {
    padding: 1.5rem 0.625rem;
  }
  .contact-form {
    padding: 1.125rem 0.625rem;
  }
  .logo img {
    width: 2.25rem;
    height: 2.25rem;
  }
  .company-name {
    font-size: 1rem;
  }
  .nav-links {
    flex-direction: column;
    gap: 1.125rem;
    background: var(--white);
    position: absolute;
    top: 3.75rem;
    right: 0;
    left: 0;
    display: none;
    padding: 1.125rem 0;
    box-shadow: var(--shadow);
  }
  .nav-links.open {
    display: flex;
  }
  .hamburger {
    display: block;
  }
  .main-header {
    padding: 0 0.75rem;
  }
  .hero-content {
    padding: 1.5rem 0 0 0;
  }
}


.fade-in {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 0.7s, transform 0.7s;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

.service-images img {
  width: 15rem;
  height: 15rem;
  border-radius: 1.125rem;
  object-fit: cover;
  box-shadow: 0 0.125rem 0.5rem rgba(23,46,115,0.07);
}

.contact-modal {
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(23,46,115,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-content {
  background: #fff;
  border-radius: 1.125rem;
  box-shadow: 0 0.5rem 2rem rgba(23,46,115,0.18);
  padding: 2rem 1.75rem 1.5rem 1.75rem;
  max-width: 25rem;
  width: 90%;
  text-align: center;
  position: relative;
}
.close-modal {
  position: absolute;
  right: 1.125rem;
  top: 0.875rem;
  font-size: 1.5rem;
  color: #888;
  cursor: pointer;
}
.modal-service-img {
  width: 5rem;
  height: 5rem;
  object-fit: cover;
  border-radius: 1.125rem;
  margin-bottom: 1rem;
  box-shadow: 0 0.125rem 0.5rem rgba(23,46,115,0.10);
}
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.125rem;
}
.channel-btn {
  display: block;
  padding: 0.75rem 0;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  color: #fff;
  transition: background 0.2s;
}
.channel-btn.whatsapp { background: #25D366; }
.channel-btn.email { background: #172E73; }
.channel-btn.linkedin { background: #0077b5; }
.channel-btn.facebook { background: #1877f3; }
.channel-btn:hover { filter: brightness(1.1); }

.service-images-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.125rem;
  justify-items: center;
}
.service-images-grid img {
  width: 15rem;
  height: 15rem;
  object-fit: cover;
  border-radius: 1.125rem;
  box-shadow: 0 0.125rem 0.5rem rgba(23,46,115,0.07);
}
.services-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 56.25rem) {
  .services-list-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.service-detail-card {
  background: #fafffd;
  border: 0.1562rem solid #767777;
  border-radius: 1.375rem;
  box-shadow: 0 0.25rem 1.5rem rgba(23,46,115,0.07), 0 0.0938rem 0.5rem rgba(0,252,168,0.07);
  padding: 2rem 1.5rem 1.75rem 1.5rem;
  margin-bottom: 2rem;
  transition: box-shadow 0.3s, border-color 0.3s;
  position: relative;
  z-index: 1;
}

.service-detail-card:hover {
  border-color: #00fca8;
  box-shadow: 0 0.5rem 2rem rgba(23,46,115,0.13), 0 0.1875rem 1rem rgba(0,252,168,0.13);
  background: #f4f8ff;
}

.service-detail-card h2 {
  margin-top: 0;
  margin-bottom: 1.125rem;
  color: #172e73;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.0312rem;
  text-align: center;
}

.service-detail-card p {
  margin-bottom: 1.125rem;
  color: #222;
  text-align: center;
}

.service-images-grid {
  margin-bottom: 1.125rem;
  border-radius: 0.875rem;
  overflow: hidden;
  background: #f4f8ff;
  border: 0.0781rem solid #767777;
  padding: 0.5rem;
}


.service-images-grid img,
.testimonial-img {
  width: 100%;
  max-width: 15rem;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 1.125rem;
  box-shadow: 0 0.125rem 0.5rem rgba(23,46,115,0.07);
  background: #fff;
  border: 0.1562rem solid rgba(0,252,168,0.13);
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.2s;
}

.service-images-grid img:hover,
.testimonial-img:hover {
  border-color: #00fca8;
  box-shadow: 0 0.5rem 2rem rgba(23,46,115,0.13), 0 0.1875rem 1rem rgba(0,252,168,0.13);
  transform: scale(1.04) rotate(-2deg);
}

.main-video-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}
.main-video-bg video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  min-width: 100vw;
  min-height: 100vh;
  filter: brightness(0.5) blur(0.0625rem);
}
.main-video-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: linear-gradient(180deg, rgba(23,46,115,0.45) 0%, rgba(0,0,0,0.2) 100%);
  pointer-events: none;
}


.services-list-section .section-title {
  display: block;
  background: rgba(255, 255, 255, 0.92);
  color: rgba(23,46,115,0.92);
  padding: 0.625rem 2rem;
  border-radius: 1.125rem;
  margin: 0 auto 2.25rem auto; 
  box-shadow: 0 0.125rem 0.5rem rgba(23,46,115,0.10);
  text-align: center;
  max-width: 26.25rem;
  position: relative;
  left: 0;
  transform: none;
}


.services-pagination {
  position: relative;
  padding-bottom: 2rem;
}

.services-pagination::after {
  content: "";
  display: block;
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0;
  height: 3.5rem;
  background: #fff; 
  border-radius: 1.75rem;
  z-index: 0;
  pointer-events: none;
}

.services-next-btn,
.services-prev-btn {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}


.services-grid .service-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.services-grid .service-icon img {
  display: block;
  margin: 0 auto;
  width: 120%;
  height: auto;
  max-width: 7.5rem; 
  transition: transform 0.2s;
}


.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 0.125rem 0.5rem rgba(0,252,168,0.07);
  transition: background var(--transition), transform var(--transition);
  z-index: 100;
}

.back-to-top:hover {
  background: var(--primary);
  transform: translateY(-0.125rem) scale(1.1);
}

.back-to-top:focus {
  outline: none;
}


.fade-in {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 0.7s, transform 0.7s;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

.service-images img {
  width: 15rem;
  height: 15rem;
  border-radius: 1.125rem;
  object-fit: cover;
  box-shadow: 0 0.125rem 0.5rem rgba(23,46,115,0.07);
}

.contact-modal {
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(23,46,115,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-content {
  background: #fff;
  border-radius: 1.125rem;
  box-shadow: 0 0.5rem 2rem rgba(23,46,115,0.18);
  padding: 2rem 1.75rem 1.5rem 1.75rem;
  max-width: 25rem;
  width: 90%;
  text-align: center;
  position: relative;
}
.close-modal {
  position: absolute;
  right: 1.125rem;
  top: 0.875rem;
  font-size: 1.5rem;
  color: #888;
  cursor: pointer;
}
.modal-service-img {
  width: 5rem;
  height: 5rem;
  object-fit: cover;
  border-radius: 1.125rem;
  margin-bottom: 1rem;
  box-shadow: 0 0.125rem 0.5rem rgba(23,46,115,0.10);
}
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.125rem;
}
.channel-btn {
  display: block;
  padding: 0.75rem 0;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  color: #fff;
  transition: background 0.2s;
}
.channel-btn.whatsapp { background: #25D366; }
.channel-btn.email { background: #172E73; }
.channel-btn.linkedin { background: #0077b5; }
.channel-btn.facebook { background: #1877f3; }
.channel-btn:hover { filter: brightness(1.1); }

.service-images-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.125rem;
  justify-items: center;
}
.service-images-grid img {
  width: 15rem;
  height: 15rem;
  object-fit: cover;
  border-radius: 1.125rem;
  box-shadow: 0 0.125rem 0.5rem rgba(23,46,115,0.07);
}
.services-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 56.25rem) {
  .services-list-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.service-detail-card {
  background: #fafffd;
  border: 0.1562rem solid #767777;
  border-radius: 1.375rem;
  box-shadow: 0 0.25rem 1.5rem rgba(23,46,115,0.07), 0 0.0938rem 0.5rem rgba(0,252,168,0.07);
  padding: 2rem 1.5rem 1.75rem 1.5rem;
  margin-bottom: 2rem;
  transition: box-shadow 0.3s, border-color 0.3s;
  position: relative;
  z-index: 1;
}

.service-detail-card:hover {
  border-color: #00fca8;
  box-shadow: 0 0.5rem 2rem rgba(23,46,115,0.13), 0 0.1875rem 1rem rgba(0,252,168,0.13);
  background: #f4f8ff;
}

.service-detail-card h2 {
  margin-top: 0;
  margin-bottom: 1.125rem;
  color: #172e73;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.0312rem;
  text-align: center;
}

.service-detail-card p {
  margin-bottom: 1.125rem;
  color: #222;
  text-align: center;
}

.service-images-grid {
  margin-bottom: 1.125rem;
  border-radius: 0.875rem;
  overflow: hidden;
  background: #f4f8ff;
  border: 0.0781rem solid #767777;
  padding: 0.5rem;
}


.service-images-grid img,
.testimonial-img {
  width: 100%;
  max-width: 15rem;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 1.125rem;
  box-shadow: 0 0.125rem 0.5rem rgba(23,46,115,0.07);
  background: #fff;
  border: 0.1562rem solid rgba(0,252,168,0.13);
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.2s;
}

.service-images-grid img:hover,
.testimonial-img:hover {
  border-color: #00fca8;
  box-shadow: 0 0.5rem 2rem rgba(23,46,115,0.13), 0 0.1875rem 1rem rgba(0,252,168,0.13);
  transform: scale(1.04) rotate(-2deg);
}

.main-video-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}
.main-video-bg video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  min-width: 100vw;
  min-height: 100vh;
  filter: brightness(0.5) blur(0.0625rem);
}
.main-video-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: linear-gradient(180deg, rgba(23,46,115,0.45) 0%, rgba(0,0,0,0.2) 100%);
  pointer-events: none;
}


.services-list-section .section-title {
  display: block;
  background: rgba(255, 255, 255, 0.92);
  color: rgba(23,46,115,0.92);
  padding: 0.625rem 2rem;
  border-radius: 1.125rem;
  margin: 0 auto 2.25rem auto; 
  box-shadow: 0 0.125rem 0.5rem rgba(23,46,115,0.10);
  text-align: center;
  max-width: 26.25rem;
  position: relative;
  left: 0;
  transform: none;
}


.services-pagination {
  position: relative;
  padding-bottom: 2rem;
}

.services-pagination::after {
  content: "";
  display: block;
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0;
  height: 3.5rem;
  background: #fff;
  border-radius: 1.75rem;
  z-index: 0;
  pointer-events: none;
}

.services-next-btn,
.services-prev-btn {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}


.services-grid .service-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.services-grid .service-icon img {
  display: block;
  margin: 0 auto;
  width: 120%;
  height: auto;
  max-width: 7.5rem;
  transition: transform 0.2s;
}


.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 0.125rem 0.5rem rgba(0,252,168,0.07);
  transition: background var(--transition), transform var(--transition);
  z-index: 100;
}

.back-to-top:hover {
  background: var(--primary);
  transform: translateY(-0.125rem) scale(1.1);
}

.back-to-top:focus {
  outline: none;
}


.fade-in {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 0.7s, transform 0.7s;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

.service-images img {
  width: 15rem;
  height: 15rem;
  border-radius: 1.125rem;
  object-fit: cover;
  box-shadow: 0 0.125rem 0.5rem rgba(23,46,115,0.07);
}

.contact-modal {
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(23,46,115,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-content {
  background: #fff;
  border-radius: 1.125rem;
  box-shadow: 0 0.5rem 2rem rgba(23,46,115,0.18);
  padding: 2rem 1.75rem 1.5rem 1.75rem;
  max-width: 25rem;
  width: 90%;
  text-align: center;
  position: relative;
}
.close-modal {
  position: absolute;
  right: 1.125rem;
  top: 0.875rem;
  font-size: 1.5rem;
  color: #888;
  cursor: pointer;
}
.modal-service-img {
  width: 5rem;
  height: 5rem;
  object-fit: cover;
  border-radius: 1.125rem;
  margin-bottom: 1rem;
  box-shadow: 0 0.125rem 0.5rem rgba(23,46,115,0.10);
}
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.125rem;
}
.channel-btn {
  display: block;
  padding: 0.75rem 0;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  color: #fff;
  transition: background 0.2s;
}
.channel-btn.whatsapp { background: #25D366; }
.channel-btn.email { background: #172E73; }
.channel-btn.linkedin { background: #0077b5; }
.channel-btn.facebook { background: #1877f3; }
.channel-btn:hover { filter: brightness(1.1); }

.service-images-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.125rem;
  justify-items: center;
}
.service-images-grid img {
  width: 15rem;
  height: 15rem;
  object-fit: cover;
  border-radius: 1.125rem;
  box-shadow: 0 0.125rem 0.5rem rgba(23,46,115,0.07);
}
.services-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 56.25rem) {
  .services-list-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.service-detail-card {
  background: #fafffd;
  border: 0.1562rem solid #e6f9f3;
  border-radius: 1.375rem;
  box-shadow: 0 0.25rem 1.5rem rgba(23,46,115,0.07), 0 0.0938rem 0.5rem rgba(0,252,168,0.07);
  padding: 2rem 1.5rem 1.75rem 1.5rem;
  margin-bottom: 2rem;
  transition: box-shadow 0.3s, border-color 0.3s;
  position: relative;
  z-index: 1;
}

.service-detail-card:hover {
  border-color: #00fca8;
  box-shadow: 0 0.5rem 2rem rgba(23,46,115,0.13), 0 0.1875rem 1rem rgba(0,252,168,0.13);
  background: #f4f8ff;
}

.service-detail-card h2 {
  margin-top: 0;
  margin-bottom: 1.125rem;
  color: #172e73;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.0312rem;
  text-align: center;
}

.service-detail-card p {
  margin-bottom: 1.125rem;
  color: #222;
  text-align: center;
}

.service-images-grid {
  margin-bottom: 1.125rem;
  border-radius: 0.875rem;
  overflow: hidden;
  background: #f4f8ff;
  border: 0.0781rem solid #767777;
  padding: 0.5rem;
}


.service-images-grid img,
.testimonial-img {
  width: 100%;
  max-width: 15rem;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 1.125rem;
  box-shadow: 0 0.125rem 0.5rem rgba(23,46,115,0.07);
  background: #fff;
  border: 0.1562rem solid rgba(0,252,168,0.13);
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.2s;
}

.service-images-grid img:hover,
.testimonial-img:hover {
  border-color: #00fca8;
  box-shadow: 0 0.5rem 2rem rgba(23,46,115,0.13), 0 0.1875rem 1rem rgba(0,252,168,0.13);
  transform: scale(1.04) rotate(-2deg);
}

.main-video-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}
.main-video-bg video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  min-width: 100vw;
  min-height: 100vh;
  filter: brightness(0.5) blur(0.0625rem);
}
.main-video-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: linear-gradient(180deg, rgba(23,46,115,0.45) 0%, rgba(0,0,0,0.2) 100%);
  pointer-events: none;
}


.services-list-section .section-title {
  display: block;
  background: rgba(255, 255, 255, 0.92);
  color: rgba(23,46,115,0.92);
  padding: 0.625rem 2rem;
  border-radius: 1.125rem;
  margin: 0 auto 2.25rem auto;
  box-shadow: 0 0.125rem 0.5rem rgba(23,46,115,0.10);
  text-align: center;
  max-width: 26.25rem;
  position: relative;
  left: 0;
  transform: none;
}


.services-pagination {
  position: relative;
  padding-bottom: 2rem;
}

.services-pagination::after {
  content: "";
  display: block;
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0;
  height: 3.5rem;
  background: #fff; 
  border-radius: 1.75rem;
  z-index: 0;
  pointer-events: none;
}

.services-next-btn,
.services-prev-btn {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}


.services-grid .service-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.services-grid .service-icon img {
  display: block;
  margin: 0 auto;
  width: 120%;
  height: auto;
  max-width: 7.5rem;
  transition: transform 0.2s;
}


.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 0.125rem 0.5rem rgba(0,252,168,0.07);
  transition: background var(--transition), transform var(--transition);
  z-index: 100;
}

.back-to-top:hover {
  background: var(--primary);
  transform: translateY(-0.125rem) scale(1.1);
}

.back-to-top:focus {
  outline: none;
}