
/* call to action */

:root {
  --primary-color: #ffffff;
  --hover-color:#f3e8ff;
  --text-color: #000000;
  --btn-bg: #6b21a8;
  --btn-text: #ffffff;
  --btn-hover: #f3e8ff;
  --font: 'Segoe UI', Tahoma, sans-serif;
  --popup-radius: 12px;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.cta-popup {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--primary-color);
  color: var(--text-color);
  padding: 1.2rem 1.8rem;
  border-radius: var(--popup-radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease;
}

.cta-popup.active {
  opacity: 1;
  pointer-events: auto;
}

.cta-popup .cta-text {
  max-width: 240px;
}

.cta-popup .cta-btn {
  background: var(--btn-bg);
  color: var(--btn-text);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cta-popup .cta-btn:hover {
  background: var(--btn-hover);
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99999;
  justify-content: center;
  align-items: center;
}

.modal {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  width: 90%;
  max-width: 420px;
  font-family: var(--font);
  box-shadow: var(--shadow);
  position: relative;
}

.modal h2 {
  margin-top: 0;
  font-size: 1.4rem;
  color: #333;
}

.modal label {
  display: block;
  margin-top: 1rem;
  font-weight: 500;
}

.modal input,
.modal textarea {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
}

.modal button {
  margin-top: 1.2rem;
  padding: 0.6rem 1rem;
  background: var(--btn-bg);
  color: var(--btn-text);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.modal button:hover {
  background: var(--btn-hover);
}

.modal .close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.2rem;
  cursor: pointer;
  color: #888;
}




/* Financial section */

:root {
  --brand: #6b21a8;
  --brand-dark: #4c1d95;
  --bg: #faf5ff;
  --text: #444444;
}

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.financial-section {
  background-color: var(--bg);
  padding: 48px 20px;
}

.financial-section h2 {
  text-align: center;
  font-size: 36px;
  color: var(--brand);
  margin-bottom: 12px;
}

.financial-section p {
  text-align: center;
  font-size: 18px;
  color: #555;
  max-width: 760px;
  margin: 0 auto 40px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.financial-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 340px;
  height: 420px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  animation: fadeIn 0.6s ease-in;
}

.financial-card:hover {
  transform: translateY(-6px);
}

.card-image {
  flex: 1 1 70%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.card-content {
  flex: 1 1 30%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

.card-description {
  font-size: 16px;
  color: var(--text);
  max-width: 260px;
}

.view-button {
  background-color: var(--brand);
  color: #fff;
  padding: 12px 22px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  margin-top: 14px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.view-button:hover {
  background-color: var(--brand-dark);
  box-shadow: 0 3px 10px rgba(107, 33, 168, 0.35);
}

.view-button:focus-visible {
  outline: 3px solid #bba5e6;
  outline-offset: 2px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 960px) {
  .financial-card {
    width: 90%;
    height: auto;
  }
  .card-content {
    padding: 20px;
  }
}

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}





/* Maintenance Section Styles */



.maintenance-wrapper {
  padding: 80px 20px;
  background: #fdfcf9;
  font-family: 'Inter', 'Segoe UI', Tahoma, sans-serif;
  color: #1e293b;
}

.maintenance-wrapper .container {
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 16px;
}

/* Content Layout */
.maintenance-wrapper .content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}

.maintenance-wrapper .text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  text-align: left;
}

.maintenance-wrapper .text h3.subtitle {
  color: #7e22ce;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  opacity: 0.9;
}

.maintenance-wrapper .text h2 {
  font-size: 2.75rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  line-height: 1.3;
}

.maintenance-wrapper .text p {
  font-size: 1.2rem;
  color: #475569;
  line-height: 1.75;
  max-width: 540px;
}

/* Preview Cards */
.preview {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

.preview img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.preview:hover img {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.request-card {
  display: flex;
  gap: 18px;
  align-items: center;
  background: #f9fafc;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeIn 0.6s ease forwards;
}

.request-card:nth-child(1) { animation-delay: 0.2s; }
.request-card:nth-child(2) { animation-delay: 0.4s; }
.request-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.request-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(126, 34, 206, 0.15);
  border-color: #d8b4fe;
}

.request-card img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
}

.request-content h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  font-weight: 600;
  color: #1e293b;
}

.request-content .name {
  font-size: 0.9rem;
  color: #475569;
}

/* Gradient Button */
.text .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 40px;
  border-radius: 50px;
  background: linear-gradient(135deg, #7e22ce, #a855f7);
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(126, 34, 206, 0.3);
  transition: all 0.3s ease;
  width: fit-content;
}

.text .cta-btn:hover {
  background: linear-gradient(135deg, #9333ea, #c084fc);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(126, 34, 206, 0.4);
}

.cta-btn .icon {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}

/* Accessibility Enhancements */
*:focus {
  outline: 3px solid #7e22ce;
  outline-offset: 2px;
}

/* Responsive */
@media (max-width: 992px) {
  .maintenance-wrapper .content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .maintenance-wrapper .text {
    align-items: center;
    text-align: center;
  }

  .maintenance-wrapper .text p {
    max-width: 680px;
    margin: 0 auto;
  }

  .request-card {
    flex-direction: column;
    text-align: center;
  }

  .request-card img {
    width: 120px;
    height: 120px;
  }

  .maintenance-wrapper .text h2 {
    font-size: 2.25rem;
  }

  .maintenance-wrapper .text p {
    font-size: 1.1rem;
  }

  .text .cta-btn {
    margin: 0 auto;
  }
}

@media (max-width: 520px) {
  .maintenance-wrapper {
    padding: 48px 16px;
  }

  .maintenance-wrapper .text h2 {
    font-size: 2rem;
  }

  .maintenance-wrapper .text p {
    font-size: 1rem;
  }

  .text .cta-btn {
    padding: 12px 32px;
    font-size: 1rem;
  }

  .request-card img {
    width: 100px;
    height: 100px;
  }

  .request-content h4 {
    font-size: 1rem;
  }

  .request-content .name {
    font-size: 0.85rem;
  }
}



/* Communication Wrapper */
.communication-wrapper {
  padding: 60px 16px;
  background: #fdfcf9;
  font-family: 'Inter', 'Segoe UI', Tahoma, sans-serif;
  color: #1e293b;
}

.communication-wrapper .container {
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 16px;
}

/* Content Layout */
.communication-wrapper .content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
}

.communication-wrapper .text {
  text-align: left;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.communication-wrapper .text h3.subtitle {
  color: #7e22ce;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  opacity: 0.9;
}

.communication-wrapper .text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  line-height: 1.3;
}

.communication-wrapper .text p {
  font-size: 1.2rem;
  color: #475569;
  line-height: 1.7;
  max-width: 550px;
}

/* Mobile Preview */
.mobile-preview {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-frame {
  background: linear-gradient(180deg, #ffffff, #f5f3ff);
  border-radius: 40px;
  padding: 20px;
  width: 320px;
  max-height: 70vh;
  overflow: hidden;
  border: 1px solid #6B7280;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  position: relative;
  transition: transform 0.3s ease;
  will-change: transform;
}

.mobile-frame:hover { transform: scale(1.03); }

/* Company Logo */
.company-logo {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  object-fit: contain;
  z-index: 10;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Feature List */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 120px 12px 12px;
  height: calc(100% - 120px);
  animation: autoScroll 18s linear infinite;
  position: relative;
  will-change: transform;
}

@keyframes autoScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.feature-list:hover { animation-play-state: paused; }

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(90deg, #ffffff, #f9f9ff);
  border-radius: 12px;
  padding: 12px 10px;
  border: 1px solid #e2e8f0;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeIn 0.5s ease forwards;
  animation-delay: calc(var(--index) * 0.15s);
  min-height: 50px;
}

.feature-item:nth-child(1) { --index: 1; }
.feature-item:nth-child(2) { --index: 2; }
.feature-item:nth-child(3) { --index: 3; }
.feature-item:nth-child(4) { --index: 4; }
.feature-item:nth-child(5) { --index: 5; }
.feature-item:nth-child(6) { --index: 6; }
.feature-item:nth-child(7) { --index: 7; }
.feature-item:nth-child(8) { --index: 8; }
.feature-item:nth-child(9) { --index: 9; }

@keyframes fadeIn {
  to { opacity: 1; transform: translateY(0); }
}

.feature-item:hover {
  background: linear-gradient(90deg, #f3e8ff, #ede9fe);
  border-color: #d8b4fe;
  box-shadow: 0 4px 16px rgba(126, 34, 206, 0.15);
}

.feature-item img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
}

.feature-item span {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
}

/* CTA Button */
.text .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 40px;
  border-radius: 40px;
  background: linear-gradient(135deg, #7e22ce, #a855f7);
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(126, 34, 206, 0.3);
  transition: all 0.3s ease;
  width: fit-content;
  cursor: pointer;
}

.text .cta-btn:hover {
  background: linear-gradient(135deg, #9333ea, #c084fc);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(126, 34, 206, 0.35);
}

.text .cta-btn .icon {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}

/* Responsive */
@media (max-width: 992px) {
  .communication-wrapper .content { 
    grid-template-columns: 1fr; 
    text-align: center; 
    gap: 32px;
  }
  .communication-wrapper .text { 
    order: 2; 
    align-items: center; 
    padding: 20px;
    text-align: center;
  }
  .mobile-preview { order: 1; }
  .mobile-frame { width: 300px; padding: 16px; max-height: 65vh; }
  .company-logo { width: 70px; height: 70px; }
  .feature-list { padding: 100px 10px 10px; height: calc(100% - 100px); }
  .feature-item img { width: 30px; height: 30px; }
  .feature-item span { font-size: 1rem; }
  .text .cta-btn { padding: 12px 32px; font-size: 1rem; }
}

@media (max-width: 520px) {
  .communication-wrapper { padding: 40px 12px; }
  .communication-wrapper .content { gap: 24px; margin-bottom: 32px; }
  .communication-wrapper .text { 
    padding: 16px; 
    align-items: center; 
    text-align: center;
  }
  .communication-wrapper .text h2 { 
    font-size: 1.8rem; 
    margin-bottom: 12px; 
    line-height: 1.4;
  }
  .communication-wrapper .text p { 
    font-size: 1rem; 
    line-height: 1.5; 
    max-width: 90%; 
    margin: 0 auto;
  }
  .communication-wrapper .text h3.subtitle {
    font-size: 0.9rem;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
  }
  .mobile-frame { 
    width: 260px; 
    padding: 12px; 
    max-height: 60vh; 
    border-radius: 32px;
  }
  .company-logo { width: 60px; height: 60px; top: 16px; }
  .feature-list { 
    padding: 90px 8px 8px; 
    height: calc(100% - 90px); 
    gap: 12px;
  }
  .feature-item { 
    padding: 10px 8px; 
    min-height: 45px; 
    border-radius: 10px;
  }
  .feature-item img { width: 28px; height: 28px; }
  .feature-item span { font-size: 0.95rem; }
  .text .cta-btn { 
    padding: 10px 28px; 
    font-size: 0.95rem; 
    border-radius: 32px;
  }
  .text .cta-btn .icon { width: 18px; height: 18px; }
  .mobile-frame::before { top: 90px; height: 30px; }
  .mobile-frame::after { height: 30px; }
}



/* ---------------- Vendor Profile Section ---------------- */
.vendor-profile {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #1e293b;
  padding: 80px 20px;
}

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

/* Text */
.vendor-profile .text {
  flex: 1;
  min-width: 300px;
  animation: fadeInLeft 0.8s ease;
}

.vendor-profile .text .small-heading {
  font-weight: bold;
  font-size: 14px;
  color: #6b218b;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.vendor-profile .text h2 {
  font-size: 36px;
  margin-bottom: 16px;
  color: #6b218b;
  line-height: 1.2;
}

.vendor-profile .text .description {
  font-size: 16px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 24px;
}

.vendor-profile .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #6b218b, #9333ea);
  color: white;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(107, 33, 139, 0.4);
  transition: all 0.3s ease;
  animation: fadeUp 0.8s ease forwards;
}

.vendor-profile .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(107, 33, 139, 0.5);
}

/* Image */
.vendor-profile .image {
  flex: 1;
  position: relative;
  text-align: center;
  animation: fadeInRight 0.8s ease;
}

.vendor-profile .image img {
  border-radius: 20px;
  max-width: 100%;
  height: auto;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.vendor-profile .image img:hover {
  transform: scale(1.02);
}

.vendor-profile .image::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 20px;
  background: linear-gradient(to bottom right, rgba(107, 33, 139, 0.1), rgba(147, 51, 234, 0.1));
  z-index: 0;
}

/* ---------------- Vendor App Section ---------------- */
.vendor-app {
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #1e293b;
  padding: 80px 20px;
}

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

/* Text */
.vendor-app .text {
  flex: 1;
  min-width: 300px;
  animation: fadeInRight 0.8s ease;
}

.vendor-app .text .small-heading {
  font-weight: bold;
  font-size: 14px;
  color: #9333ea;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.vendor-app .text h2 {
  font-size: 36px;
  margin-bottom: 16px;
  color: #6b21a8;
  line-height: 1.2;
}

.vendor-app .text .description {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 24px;
}

.vendor-app .btn {
  padding: 14px 28px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #6b21a8, #9333ea);
  color: white;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(107, 33, 168, 0.4);
  transition: all 0.3s ease;
}

.vendor-app .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(107, 33, 168, 0.5);
}

/* Image */
.vendor-app .image {
  flex: 1;
  text-align: center;
  animation: fadeInLeft 0.8s ease;
}

.vendor-app .image img {
  border-radius: 20px;
  max-width: 100%;
  height: auto;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.vendor-app .image img:hover {
  transform: scale(1.02);
}

/* Animations */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .vendor-profile .content-wrapper,
  .vendor-app .content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .vendor-profile .text h2,
  .vendor-app .text h2 {
    font-size: 28px;
  }
}




 /* vendor Services section */




.vendor-services {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  color: #1e293b;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}

.vendor-services h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: #6b21a8;
  font-weight: 700;
}

.vendor-services .description {
  max-width: 700px;
  margin: 0 auto 25px;
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
}

.vendor-services .cta-button {
  display: inline-block;
  margin-bottom: 50px;
  padding: 10px 26px;
  background: linear-gradient(135deg, #6b21a8, #9333ea);
  color: #ffffff;
  font-weight: 500;
  font-size: 15px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(107, 33, 168, 0.3);
  transition: all 0.3s ease;
}
.vendor-services .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(76, 29, 149, 0.4);
}

/* Carousel wrapper */
.carousel-track-wrapper {
  overflow: hidden;
  position: relative;
  margin-bottom: 40px;
}

/* Continuous scroll */
.carousel-track {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
  animation: scroll-left 15s linear infinite;
  will-change: transform;
}
.carousel-track.reverse {
  animation: scroll-right 15s linear infinite;
}

/* Service cards */
.carousel-item {
  flex: 0 0 auto;
  width: 220px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 16px;
  text-align: center;
  transition: all 0.3s ease;
}
.carousel-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Images */
.carousel-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}
.carousel-item p {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}

/* Keyframes */
@keyframes scroll-left {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}
@keyframes scroll-right {
  0% { transform: translate3d(-50%, 0, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

/* Safari/WebKit fallback */
@-webkit-keyframes scroll-left {
  0% { -webkit-transform: translate3d(0, 0, 0); }
  100% { -webkit-transform: translate3d(-50%, 0, 0); }
}
@-webkit-keyframes scroll-right {
  0% { -webkit-transform: translate3d(-50%, 0, 0); }
  100% { -webkit-transform: translate3d(0, 0, 0); }
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-item {
    width: 160px;
    padding: 12px;
  }
  .carousel-item img {
    height: 120px;
  }
  .vendor-services h2 {
    font-size: 1.6rem;
  }
}


body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background: #fff;
}

.line, 
.carousel li img,
.carousel li,
.carousel {
  width: 100%;
}

.flex,
.carousel-wrapper,
.center,
.carousel ul {
  display: flex;
}

.center,
.carousel ul {
  align-items: center;
  justify-content: center;
}

.carousel-wrapper {
  position: relative;
  max-width: 950px;
  margin: 5px auto;
  height: 632px;
}

.carousel-wrapper input {
  display: none;
}

.carousel {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 48px 2px hsla(10 6% 15% / .4);
}

.carousel ul {
  position: relative;
  list-style: none;
  overflow: hidden;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 700%;
  transition: left 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.carousel li img {
  border-radius: 15px;
}

/* Navigation Dots */
.nav-dot {
  position: absolute;
  cursor: pointer;
  margin-left: -7.5px;
  bottom: -25px;
  width: 15px;
  height: 15px;
  opacity: 0.5;
  background-color:#f3e8ff;
  border-radius: 50%;
  transition: 0.4s;
  margin-bottom: -25px;
}

/* Highlight active dot with purple */
#slide1:checked ~ .nav-dot[for=slide1],
#slide2:checked ~ .nav-dot[for=slide2],
#slide3:checked ~ .nav-dot[for=slide3],
#slide4:checked ~ .nav-dot[for=slide4],
#slide5:checked ~ .nav-dot[for=slide5],
#slide6:checked ~ .nav-dot[for=slide6],
#slide7:checked ~ .nav-dot[for=slide7] {
  background-color: #6b21a8;
  opacity: 1;
}

.nav-dot:hover {
  opacity: 0.8;
  transform: scale(1.2);
}

.nav-dot:active {
  transform: scale(0.9);
}

/* Dots position */
.nav-dot[for=slide1] { left: 36%; }
.nav-dot[for=slide2] { left: 40%; }
.nav-dot[for=slide3] { left: 44%; }
.nav-dot[for=slide4] { left: 48%; }
.nav-dot[for=slide5] { left: 52%; }
.nav-dot[for=slide6] { left: 56%; }
.nav-dot[for=slide7] { left: 60%; }

/* Slide control positioning */
#slide1:checked ~ .carousel ul { left: 0%; }
#slide2:checked ~ .carousel ul { left: -100%; }
#slide3:checked ~ .carousel ul { left: -200%; }
#slide4:checked ~ .carousel ul { left: -300%; }
#slide5:checked ~ .carousel ul { left: -400%; }
#slide6:checked ~ .carousel ul { left: -500%; }
#slide7:checked ~ .carousel ul { left: -600%; }