@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

:root {
  --primary: #1e3932;
  --secondary: #39a28d;
  --accent: #fff;
  --bg: #e6efeb;
  --card: #fff;
  --shadow: 0 8px 32px 0 rgba(60,60,80,.08);
  --radius: 2rem;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--bg);
  color: #222;
  scroll-behavior: smooth;
}
.container { width: 92%; max-width: 1180px; margin: 0 auto; }

/* SERVICES SLIDER */
.services-slider-section {
  margin-top: 1.2rem;
  margin-bottom: 2.2rem;
}
.services-slider {
  position: relative;
  max-width: 1024px;
  margin: 0 auto;
  height: 340px;
}
.service-slide {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  border-radius: 2rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.6s cubic-bezier(.77,0,.175,1);
}
.service-slide.active {
  opacity: 1;
  z-index: 2;
}
.service-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,51,45,0.38);
  z-index: 1;
}
.service-content {
  position: relative;
  z-index: 2;
  padding: 2.6rem 2.2rem 2.6rem 2.2rem;
  color: #fff;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  min-height: 220px;
  margin-bottom: 24px;
}
.service-content h3 {
  font-size: 2rem;
  font-weight: 700;
}
.service-content p {
  font-size: 1.1rem;
  color: #e6efeb;
  line-height: 1.45;
}
.btn-service {
  position: absolute;
  left: 2.2rem;
  bottom: 2.2rem;
  display: inline-block;
  padding: 0.55rem 1.3rem;
  background: #39a28d;
  color: #fff;
  border-radius: 0.8rem;
  font-weight: 600;
  font-size: .96rem;
  text-decoration: none;
  border: none;
  transition: background 0.15s;
  box-shadow: 0 3px 24px 0 rgba(60,60,80,.10);
  z-index: 12;
}
.btn-service:hover { background: #1e3932; color: #fff; }
.slider-arrows-corner {
  position: absolute;
  right: 2.2rem;
  bottom: 2.2rem;
  display: flex;
  gap: 1rem;
  z-index: 12;
}
.slider-arrow {
  background: rgba(255,255,255,0.78);
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  font-size: 1.1rem;
  color: #1e3932;
  cursor: pointer;
  transition: background 0.14s, box-shadow 0.12s;
  box-shadow: 0 2px 8px 0 rgba(60,60,80,.13);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-arrow:hover { background: #39a28d; color: #fff; }
.slider-dots {
  position: absolute;
  bottom: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  z-index: 10;
}
.dot {
  width: 12px; height: 6px;
  background: #d6e6df;
  border-radius: 7px;
  display: inline-block;
  transition: background 0.18s, width 0.14s;
}
.dot.active {
  background: #39a28d;
  width: 24px;
}

/* SLIDER MOBILE FIXES */
@media (max-width: 700px) {
  .services-slider-section {
    margin-top: 0.7rem;
    margin-bottom: 1.2rem;
  }
  .services-slider {
    height: 220px;
    border-radius: 1.1rem;
  }
  .service-slide {
    border-radius: 1.1rem;
  }
  .service-content {
    padding: 1rem 0.7rem 2.1rem 0.7rem;
    min-height: 120px;
    margin-bottom: 0;
    max-width: 99vw;
  }
  .btn-service {
    left: 0.7rem;
    bottom: 0.8rem;
    font-size: 0.78rem;
    padding: 0.39rem 0.9rem;
  }
  .slider-arrows-corner {
    right: 0.9rem;
    bottom: 0.9rem;
    gap: 0.45rem;
  }
}

/* NEXT GEN IT SUPPORT SECTION */
.special-service {
  background: #fff;
  padding: 2.5rem 0;
}
.nextgen-layout {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1.8rem;
  max-width: 1024px;
  margin: 0 auto;
}
.nextgen-title-bg {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: linear-gradient(120deg, #1e3932 30%, #39a28d 100%);
  border-radius: 1.5rem;
  padding: 1.8rem 2.8rem;
  min-width: 320px;
  text-align: right;
  color: #fff;
}
.nextgen-title-bg h2 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
}
.nextgen-text {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-start;
}
.nextgen-text p {
  font-size: 1.05rem;
  color: #222;
  max-width: 580px;
  line-height: 1.55;
  margin: 0;
}

/* Mobile optimization for Next Gen section */
@media (max-width: 900px) {
  .special-service {
    padding: 1.8rem 0;
  }
  .nextgen-layout {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
  .nextgen-title-bg {
    min-width: 100%;
    padding: 1.4rem 2rem;
    border-radius: 1.2rem;
    justify-content: center;
    text-align: center;
  }
  .nextgen-title-bg h2 {
    font-size: 1.6rem;
  }
  .nextgen-text {
    justify-content: center;
    text-align: center;
  }
  .nextgen-text p {
    font-size: 1rem;
    max-width: 100%;
  }
}

@media (max-width: 700px) {
  .special-service {
    padding: 1.2rem 0;
  }
  .nextgen-title-bg {
    padding: 1.2rem 1.5rem;
    border-radius: 1rem;
  }
  .nextgen-title-bg h2 {
    font-size: 1.4rem;
    line-height: 1.3;
  }
  .nextgen-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 0 1rem;
  }
}

/* WHY US CARDS */
.why-us-section {
  background: var(--bg);
  padding: 3.2rem 0 2.5rem 0;
  overflow: visible;
}
.why-us-cards {
  display: flex;
  gap: 2.4rem;
  justify-content: center;
  align-items: stretch;
  overflow: visible;
}
.why-card {
  background: #fff;
  border-radius: 1.3rem;
  box-shadow: 0 5px 24px 0 rgba(60,60,80,0.08);
  padding: 2.2rem 1.2rem 2.3rem 1.2rem;
  flex: 1 1 0;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow .16s, transform .13s;
}
.why-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.why-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Add styles for process icons */
.process-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e6efeb;
  border-radius: 50%;
  box-shadow: 0 2px 8px 0 rgba(60,60,80,0.10);
}
.process-icon img, .process-icon svg {
  width: 32px;
  height: 32px;
  display: block;
}

/* Remove number styling if any (assumes numbers were styled in .process-card or similar) */
.process-card-number {
  display: none !important;
}

/* Optional: adjust spacing if needed */
.process-card {
  align-items: center;
  text-align: center;
}

/* WHY US CARDS HORIZONTAL SCROLL ON MOBILE */
@media (max-width: 700px) {
  .why-us-section {
    overflow: visible;
    padding-bottom: 5rem;
  }
  .why-us-cards {
    padding-bottom: 3.5rem;
    overflow: visible;
    flex-direction: row !important;
    overflow-x: auto;
    overflow-y: visible;
    gap: 1.2rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 2rem 1rem 3rem 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
  }
  .why-us-cards::-webkit-scrollbar {
    display: none;
  }
  .why-card {
    min-width: 85vw !important;
    max-width: 85vw !important;
    flex-shrink: 0;
    scroll-snap-align: center;
  }
  .why-card:hover {
    box-shadow: 0 12px 32px 0 rgba(60,60,80,0.12);
    transform: translateY(-3px) scale(1.02);
  }
  .why-us-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0 1rem;
  }
  .why-us-dot {
    width: 10px;
    height: 10px;
    background: #d6e6df;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .why-us-dot.active {
    background: #39a28d;
    transform: scale(1.2);
  }
}

@media (max-width: 600px) {
  .why-card:hover {
    box-shadow: 0 8px 24px 0 rgba(60,60,80,0.10);
    transform: translateY(-2px) scale(1.01);
  }
  .why-us-cards {
    padding: 1.5rem 1rem 2.5rem 1rem;
  }
  .why-card {
    min-width: 90vw !important;
    max-width: 90vw !important;
  }
}

@media (hover: none) and (pointer: coarse) {
  .why-card:hover {
    box-shadow: 0 5px 24px 0 rgba(60,60,80,0.08);
    transform: none;
  }
}

/* CONTACT & FOOTER */
.contact {
  background: linear-gradient(120deg, #1e3932 30%, #39a28d 100%);
  color: var(--accent);
  padding: 3rem 0;
}
.contact-content {
  max-width: 1024px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 2rem;
  justify-content: space-between;
}
.contact-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact-section-title {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.8rem;
  line-height: 1.1;
  letter-spacing: -1px;
}
.contact-form {
  background: linear-gradient(135deg, #e6efeb 80%, #c3e6db 100%);
  border-radius: 1.5rem;
  box-shadow: 0 5px 28px 0 rgba(60,60,80,0.12);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-width: 0;
  width: 100%;
  flex-grow: 1;
  justify-content: flex-start;
  min-height: 360px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1.5px solid #d8e6e0;
  border-radius: 1rem;
  font-size: 0.95rem;
  background: #f8fbfa;
  color: #233;
  transition: border 0.18s;
  resize: vertical;
}
.contact-form select {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1.5px solid #d8e6e0;
  border-radius: 1rem;
  font-size: 0.95rem;
  background: #f8fbfa;
  color: #233;
  transition: border 0.18s;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2L8 8L14 2' stroke='%2339a28d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  background-size: 1em;
  cursor: pointer;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border: 1.5px solid var(--secondary);
  outline: none;
  background: #fff;
}
.contact-form textarea {
  min-height: 90px;
  max-height: 180px;
  font-size: 0.95rem;
}
.contact-form button.btn-primary {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.9rem 1.8rem;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 0.5rem;
  box-shadow: 0 3px 16px 0 rgba(60,60,80,0.10);
  transition: background 0.17s, color 0.17s;
}
.contact-form button.btn-primary:hover {
  background: var(--secondary);
  color: #fff;
}

/* Contact Info List (right column, match card style) */
.contact-info-list {
  background: linear-gradient(135deg, #e6efeb 80%, #c3e6db 100%);
  border-radius: 1.5rem;
  box-shadow: 0 5px 28px 0 rgba(60,60,80,0.12);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-width: 0;
  width: 100%;
  flex-grow: 1;
  justify-content: flex-start;
  min-height: 360px;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.05rem;
  color: #1e3932;
  word-break: break-word;
}
.contact-info-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  object-fit: contain;
  filter: none;
}
.contact-info-item a {
  color: #1e3932;
  text-decoration: underline;
  transition: color 0.13s;
  word-break: break-all;
}
.contact-info-item a:hover {
  color: #39a28d;
}

/* Responsive: stack columns on mobile, keep cards full width and equal */
@media (max-width: 900px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .contact-form,
  .contact-info-list {
    border-radius: 1.2rem;
    padding: 1.5rem;
    min-width: 0;
    width: 100%;
    min-height: 320px;
    flex-grow: 1;
  }
  .contact-section-title {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
  }
}

@media (max-width: 700px) {
  .contact {
    padding: 2rem 0;
  }
  .contact-section-title {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
  }
  .contact-form,
  .contact-info-list {
    padding: 1.2rem;
    border-radius: 1rem;
    min-height: 280px;
  }
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    border-radius: 0.8rem;
  }
  .contact-form textarea {
    min-height: 80px;
    max-height: 160px;
  }
  .contact-form button.btn-primary {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 0.8rem;
  }
  .contact-info-item {
    font-size: 0.95rem;
    gap: 0.7rem;
  }
  .contact-info-icon {
    width: 22px;
    height: 22px;
  }
}

/* PROCESS SECTION */
.process-section {
  background: #fff;
  padding: 3.5rem 0 2.5rem 0;
  margin-top: 2rem;
}
.process-steps {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  gap: 2.5rem;
  max-width: 1024px;
  margin: 0 auto;
  flex-wrap: nowrap;
  padding: 0; /* Remove any default padding */
}
.process-section > .container {
  width: 92%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0; /* Match slider container, remove extra padding */
}
@media (max-width: 700px) {
  .process-section > .container {
    width: 100%;
    padding: 0 0.5rem;
  }
  .process-steps {
    flex-direction: column;
    align-items: stretch;
    gap: 1.1rem;
    position: relative;
    flex-wrap: unset;
    justify-content: flex-start;
  }
  .process-arrow {
    display: none !important;
  }
  .process-card {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    max-width: 100vw;
    min-width: 0;
    min-height: 72px;
    padding: 1rem 1.1rem;
    margin: 0 auto;
    gap: 1rem;
    text-align: left;
    position: relative;
    transition: box-shadow 0.18s, background 0.18s, border-color 0.18s;
    cursor: pointer;
  }
  .process-card .process-icon {
    margin-bottom: 0;
    margin-right: 1rem;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }
  .process-card-inner {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex: 1;
  }
  .process-card h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--primary);
    font-weight: 700;
  }
  .process-desc {
    display: none;
    font-size: 0.98rem;
    color: #333;
    margin: 0.7rem 0 0.2rem 0;
    line-height: 1.5;
    padding-right: 2.2rem;
  }
  .process-card.active .process-desc {
    display: block;
  }
  .process-card .close-desc-btn {
    display: none;
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    width: 28px;
    height: 28px;
    background: #fff;
    border: 1.5px solid #d6e6df;
    border-radius: 50%;
    color: #1e3932;
    font-size: 1.2rem;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    box-shadow: 0 2px 8px 0 rgba(60,60,80,0.10);
    transition: background 0.15s, border-color 0.15s;
  }
  .process-card.active .close-desc-btn {
    display: flex;
  }
}
.process-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: var(--primary);
  letter-spacing: -1px;
}

/* Center process arrows vertically and add a gradient pulse line effect */
.process-steps {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  gap: 2.5rem;
  max-width: 1024px;
  margin: 0 auto;
  flex-wrap: nowrap;
}
.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  position: relative;
  z-index: 2;
  height: auto;
  min-width: 60px;
  background: none;
}
.process-arrow svg {
  position: relative;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}
.process-arrow::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #39a28d 0%, #e6efeb 100%);
  border-radius: 3px;
  opacity: 1;
  z-index: 1;
  animation: pulseLine 1.2s cubic-bezier(.4,0,.2,1) infinite alternate;
  box-shadow: 0 0 16px 4px #39a28d55;
}
@keyframes pulseLine {
  0% { opacity: 1; box-shadow: 0 0 8px 2px #39a28d33; }
  50% { opacity: 0.7; box-shadow: 0 0 24px 8px #39a28d55; }
  100% { opacity: 1; box-shadow: 0 0 8px 2px #39a28d33; }
}

.process-steps {
  align-items: stretch;
}
.process-card {
  background: #fff;
  border: 2.5px solid #d6e6df;
  border-radius: 1.3rem;
  box-shadow: 0 2px 16px 0 rgba(60,60,80,0.06);
  padding: 1.7rem 1.3rem;
  width: 100%;
  max-width: 260px;
  min-width: 0;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  position: relative;
  transition: 
    transform 0.18s, 
    box-shadow 0.18s, 
    border-color 0.18s, 
    background 0.18s;
  background-clip: padding-box;
  border-color: #d6e6df;
  flex: 1 1 0;
  gap: 1.1rem;
}
.process-card:hover,
.process-card.active {
  background: linear-gradient(120deg, #e6efeb 60%, #c3e6db 100%);
  border-color: #39a28d;
  box-shadow: 0 0 0 0 #39a28d55, 0 2px 24px 0 rgba(60,60,80,0.10);
  transform: translateY(-4px) scale(1.025);
  z-index: 3;
}
.process-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: var(--primary);
}
.process-desc {
  font-size: 1rem;
  color: #333;
  margin: 0;
  line-height: 1.5;
}
.process-card .process-icon {
  margin-bottom: 1.1rem;
}

/* --- Use a linear gradient border animation on hover for process cards --- */
.process-card::before {
  content: none;
}
.process-card {
  background: #fff;
  border: 2.5px solid #d6e6df;
  border-radius: 1.3rem;
  box-shadow: 0 2px 16px 0 rgba(60,60,80,0.06);
  padding: 1.7rem 1.3rem;
  width: 100%;
  max-width: 260px;
  min-width: 0;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  position: relative;
  transition: 
    transform 0.18s, 
    box-shadow 0.18s, 
    border-color 0.18s, 
    background 0.18s;
  background-clip: padding-box;
  border-color: #d6e6df;
  flex: 1 1 0;
  gap: 1.1rem;
}
.process-card:hover,
.process-card.active {
  background: linear-gradient(120deg, #e6efeb 60%, #c3e6db 100%);
  border-color: #39a28d;
  box-shadow: 0 0 0 0 #39a28d55, 0 2px 24px 0 rgba(60,60,80,0.10);
  transform: translateY(-4px) scale(1.025);
  z-index: 3;
}

.process-steps {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  gap: 2.5rem;
  max-width: 1024px;
  margin: 0 auto;
  flex-wrap: nowrap;
}
@media (max-width: 900px) {
  .process-steps {
    gap: 1.2rem;
    max-width: 100vw;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (max-width: 700px) {
  .process-section > .container {
    width: 100%;
    padding: 0 0.5rem;
  }
  .process-steps {
    flex-direction: column;
    align-items: stretch;
    gap: 1.1rem;
    position: relative;
    flex-wrap: unset;
    justify-content: flex-start;
  }
}

/* FOOTER */
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.95rem;
  color: #444;
}
.footer-content span {
  color: #1e3932;
}

@media (max-width: 700px) {
  .footer-content {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
    padding: 1.2rem 0;
    font-size: 0.9rem;
  }
}