html {
  scroll-behavior: smooth;
}

* {
  font-family: "Montserrat", sans-serif;
}

/*Start Top Bar*/
.top-bar {
  background-color: #f5f7fa;
  padding: 8px 0;
  font-size: 14px;
  color: #1a1a1a;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: auto;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar iconify-icon {
  margin-right: 6px;
  color: #2e1cd1; /* Match Nexlume brand color if desired */
  vertical-align: middle;
}

.top-bar-right a {
  text-decoration: none;
  color: #1a1a1a;
}

/*End Top Bar*/

/*Start Header and navbar*/
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  font-weight: 600;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #2e1cd1;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #333;
}

/*End Header and navbar*/

/* Start Client Section */
.client-carousel-section {
  background: #fff;
  padding: 60px 20px;
}

.carousel-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.carousel-heading {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid #eee;
  border-radius: 32px;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 40px;
}

/* Marquee Wrapper */
.marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 8%,
    black 92%,
    transparent
  );
}

.marquee__inner {
  display: flex;
  gap: 80px;
  align-items: center;
  width: max-content;
  will-change: transform; /* smooth GPU acceleration */
}

.marquee__inner img {
  height: 60px;
  object-fit: contain;
  opacity: 0.8;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.marquee__inner img:hover {
  transform: scale(1.08);
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .marquee__inner {
    gap: 40px;
  }

  .marquee__inner img {
    height: 45px;
  }
}

/* End Client Section */

/* Start hero section*/

.hero-section {
  padding: 80px 20px;
  background: #f5f7fa;
}

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

/* Left */
.hero-left {
  flex: 1 1 500px;
}

.hero-title {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  color: #0b1215;
}

.cursor {
  display: inline-block;
  width: 2px;
  background-color: #2e1cd1;
  animation: blink 0.8s infinite;
  margin-left: 4px;
  height: 1em;
  vertical-align: middle;
}

.hero-left h1 span {
  color: #2e1cd1;
}

.hero-left p {
  font-size: 1rem;
  color: #555;
  margin: 20px 0 30px;
  line-height: 1.6;
}

/* Buttons */
.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.primary-btn {
  background-color: #2e1cd1;
  color: #fff;
  border: 2px solid #2e1cd1;
}

.primary-btn:hover {
  background-color: transparent;
  color: #2e1cd1;
}

.secondary-btn {
  background-color: transparent;
  color: #2e1cd1;
  border: 2px solid #2e1cd1;
}

.secondary-btn:hover {
  background-color: #2e1cd1;
  color: #fff;
}

/* Right */
.hero-right {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-right .hero-img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

@keyframes blink {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}

/* End hero section */

/* Start Feature section */

.features-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px;
}

.section-label {
  font-size: 14px;
  font-weight: 600;
  background-color: #f4f4f4;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 30px;
  margin-bottom: 20px;
  color: #0b1215;
}

.features-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  gap: 20px;
}

.features-header h2 {
  font-size: 32px;
  margin: 10px 0;
  color: #0b1215;
}

.feature-button {
  background-color: white;
  border: 1px solid #ccc;
  padding: 10px 18px;
  border-radius: 9999px;
  cursor: pointer;
  font-weight: 600;
  color: #0b1215;
}

.feature-button iconify-icon {
  vertical-align: middle;
  margin-left: 6px;
}

.feature-button:hover {
  background-color: #f2f2f2;
}

.feature-section {
  background-color: #fff;
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  font-family: "Inter", sans-serif;
}

.feature-wrapper {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 24px 24px;
  border-radius: 16px;
  align-items: center;
}

.feature-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
}

.feature-tab {
  background: none;
  border: none;
  font-size: 18px;
  margin: 10px 20px;
  padding: 10px;
  cursor: pointer;
  font-weight: 500;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}

.feature-tab.active {
  border-color: #2e1cd1;
  color: #2e1cd1;
}

.feature-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.feature-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.feature-content.fade-out {
  opacity: 0;
  transform: translateY(20px);
}

.feature-text {
  flex: auto;
}

.feature-text h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.feature-text p {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}

.feature-points {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.feature-points li {
  margin-bottom: 10px;
  font-size: 15px;
}

.feature-btn {
  background-color: #2e1cd1;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background 0.3s;
}

.feature-btn:hover {
  background-color: #1b0fb5;
}

.feature-image {
  flex: 1 1 100px;
  max-width: 100%;
  border-radius: 12px;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* End feature section */

/* Start testimonial-highlight section */
.testimonial-highlight-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonial-highlight {
  border-radius: 20px;
  overflow: hidden;
  background: url("https://mortar-next-js.vercel.app/_next/static/media/feature-contact-bg.cd945f97.jpg")
    no-repeat center/cover;
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: white;
}

.testimonial-highlight-content {
  max-width: 400px;
  background: rgba(0, 0, 0, 0.4);
  padding: 30px;
  border-radius: 16px;
}

.testimonial-highlight-content h2 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.testimonial-highlight-content span {
  color: #00ff94;
}

.testimonial-highlight-content p {
  font-size: 20px;
  margin: 16px 0 32px;
  font-weight: 500;
}

.testimonial-highlight-btn {
  background-color: white;
  color: black;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: inline-block;
  transition: 0.3s ease;
}

.testimonial-highlight-btn iconify-icon {
  vertical-align: middle;
  margin-left: 6px;
}

.testimonial-highlight-btn:hover {
  transform: translateY(-2px);
  background-color: #f1f1f1;
}

/* End testimonial-highlight section */

/* Start What We Do Section */

.services-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  background-color: #111;
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 32px;
}

.pill-tags {
  list-style: none;
  padding-left: 0;
  margin: 0 0 12px;
}

.pill-tags li {
  background-color: #fff;
  color: #000;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 8px;
  display: block; /* changed from inline-block to block */
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  width: fit-content;
}

.more-services-btn {
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  border: 1px solid #ccc;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  color: #111;
  transition: background 0.3s ease;
}

.more-services-btn:hover {
  background: #f0f0f0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
  gap: 32px;
}

.service-card {
  background: #fdfdfd;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 0 0 1px #eaeaea;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
}

.card-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.card-inner img {
  max-width: 320px;
  border-radius: 12px;
  height: auto;
  flex-shrink: 0;
}

.text-content {
  flex: 1;
}

.text-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.tags-list {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 12px;
}

.tags-list li {
  font-size: 14px;
  margin-bottom: 6px;
}

.view-link {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #111;
}

.view-link iconify-icon {
  vertical-align: middle;
  margin-left: 6px;
}

/* Optional Color Variants */
.highlight-blue {
  background-color: #caf0f8;
}

.highlight-green {
  background-color: #d8f5e0;
}

/* End What We Do Section */

/* Start Global Impact */

.global-impact-section {
  position: relative;
  background: #0e0e0e;
  color: #fff;
  padding: 100px 20px;
  overflow: hidden;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* stays behind the content */
}

.global-impact-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.section-label {
  display: inline-block;
  background: #ffffff20;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.global-impact-section-title {
  font-size: 32px;
  font-weight: 700;
  margin: 10px 0 20px;
}

.section-description {
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 50px;
  color: #cccccc;
}

.impact-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.stat-item {
  background: #1b1b1b;
  padding: 20px 30px;
  border-radius: 12px;
  min-width: 240px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 0 20px #00000050;
}

.icon {
  font-size: 30px;
}

.text h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
}

.text p {
  margin: 2px 0 0;
  font-size: 14px;
  color: #bbbbbb;
}

/* End Global Impact */

/* Start Industries We Serve */

.industries-section {
  padding: 80px 20px;
  background: #f5f7fa;
  margin: 0 auto;
}

.industries-section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 60px;
  color: #0b1215;
}

.industries-container {
  max-width: 1440px;
  margin: auto;
}

.industries-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  position: relative;
}

.icon-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.icon-grid .row {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.icon-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.icon-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;

  transition: filter 0.3s;
}

.icon-card:hover img {
  filter: none;
}

.icon-card::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #0b1215;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 20;

  transform: translateX(-50%) scale(0.95);
}

.icon-card:hover::after {
  opacity: 1;

  transform: translateX(-50%) scale(1);
}

.center-logo img {
  width: 80px;
  height: auto;
  z-index: 2;
}

/* End Industries We Serve */

/* Start Testimonials */

.testimonial-section {
  max-width: 1400px;
  margin: auto;
  padding: 60px 20px;
  overflow: hidden;
}

.testimonial-heading {
  text-align: center;
  margin-bottom: 40px;
}

.testimonial-heading .tag {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid #eee;
  border-radius: 32px;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 40px;
}

.testimonial-heading h2 {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
}

.testimonial-wrapper {
  display: flex;
  transition: transform 0.6s ease;
  gap: 20px;
  padding: 20px;
}

.testimonial-card {
  flex: 50%;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  text-align: center;
}

.testimonial-card.animate {
  animation: slideIn 0.6s ease-out;
}

.testimonial-card .quote {
  font-size: 120px;
  color: #2e1cd1;
  text-align: left;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.testimonial-card .testimonial-author {
  margin-top: 20px;
}

.testimonial-author strong {
  font-size: 18px;
  color: #000;
}

.testimonial-author span {
  display: block;
  font-size: 14px;
  color: #777;
}

@keyframes slideIn {
  from {
    transform: translateX(60px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* End Testimonials */

/* Start Nexlume Apps */
.nexlume-apps-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

/* nexlume-apps Section */
.nexlume-apps-section {
  background: #fdf5ed url("dot-grid.png") repeat;
  padding: 4rem 0;
  font-family: "Inter", sans-serif;
}

/* Grid Layout */
.nexlume-apps-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

/* Left Content */
.nexlume-apps-content {
  flex: 1 1 600px;
  max-width: 600px;
}

.nexlume-apps-tag {
  display: inline-block;
  background: #1e1e1e;
  color: white;
  padding: 6px 14px;
  font-size: 24px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.nexlume-apps-title {
  font-size: 32px;
  color: #1e1e1e;
  margin-bottom: 1rem;
}

.nexlume-apps-description {
  color: #5b5b5b;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.nexlume-apps-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.nexlume-apps-features li {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  color: #1e1e1e;
  margin-bottom: 1rem;
}

.checkmark {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #1e1e1e;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  margin-right: 10px;
}

.nexlume-apps-button {
  display: inline-block;
  background: white;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  text-decoration: none;
  color: #1e1e1e;
  border: 2px solid #ddd;
  transition: all 0.2s ease;
}

.nexlume-apps-button:hover {
  background: #f3f3f3;
  border-color: #aaa;
}

.arrow {
  margin-left: 8px;
}

/* Right Image */
.nexlume-apps-image {
  flex: 1 1 500px;
  text-align: center;
}

.nexlume-apps-image img {
  max-width: 100%;
  height: auto;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  border-radius: 20px;
  transition: opacity 0.4s ease-in-out;
}

.app-slider-image.loading {
  /* Make the image fade out while the new one loads */
  opacity: 0.3;
}

/* App store buttons */
.app-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.store-button {
  height: 48px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.store-button:hover {
  transform: scale(1.05);
}

.slider-controls {
  position: absolute;
  top: 50%;
  right: -48px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.slider-controls button {
  background: white;
  border: none;
  border-radius: 20%;
  padding: 10px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-controls button:hover {
  background-color: #f0f0f0;
}

.slider-indicators {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.slider-indicators div {
  width: 6px;
  height: 24px;
  border-radius: 3px;
  background-color: #e0e0e0;
  transition:
    background-color 0.3s,
    height 0.3s;
}

.slider-indicators .active {
  background-color: #333;
  height: 36px;
}

.slider-indicators .indicator-pill {
  width: 8px;
  height: 28px;
  border-radius: 10px;
  background-color: #e0e0e0;
  transition: background-color 0.3s ease;
}

.slider-indicators .indicator-pill.active {
  background-color: #2c2c2c;
  height: 36px;
}

/* End Nexlume Apps */

/* Start Contact Us Section */
.contact-section {
  font-family: "Montserrat", sans-serif;
  padding: 60px 20px;
}

.contact-wrapper {
  max-width: 1400px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.contact-form-area,
.contact-info-area {
  flex: 1;
  padding: 40px;
  box-sizing: border-box;
}

.contact-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0b1215;
}

.contact-subtitle {
  color: #555;
  margin-bottom: 30px;
}

.contact-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.input-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  flex: 1;
}

.input-group label {
  font-weight: 500;
  margin-bottom: 6px;
}

.input-group input,
.input-group select,
.input-group textarea {
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 14px;
  outline: none;
}

.input-group textarea {
  resize: vertical;
  min-height: 100px;
}

.input-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 20px;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.checkbox-group label {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.submit-button {
  background: #2e1cd1;
  color: #fff;
  padding: 14px 24px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn .btn-text {
  position: relative;
  z-index: 2;
}

.submit-btn .btn-progress-bar {
  position: absolute;
  height: 100%;
  width: 0%;
  background-color: #fff;
  top: 0;
  left: 0;
  z-index: 1;
  transition: width 2s ease-in-out;
}

.submit-btn.loading .btn-progress-bar {
  width: 100%;
}

.submit-btn.success {
  background-color: #1abc9c;
}

.submit-btn.error {
  background-color: #e74c3c;
}

.submit-button:hover {
  background: #1c0f9e;
}

.contact-info-area {
  background-image: url("images/contact_us_bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-form-area a {
  text-decoration: none;
  color: #2e1cd1;
}

.contact-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 20px;
}

.info-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8.8px);
  -webkit-backdrop-filter: blur(8.8px);
}

.info-card {
  padding: 20px;
  text-align: center;
}

.info-card iconify-icon {
  font-size: 20px;
  color: #eee;
  background-color: #0b1215; /* soft blue background */
  padding: 10px;
  border-radius: 20%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.info-card h4 {
  font-size: 14px;
  margin: 6px 0;
  font-weight: 600;
}

.info-card a {
  text-decoration: none;
  color: #000000;
}

.is-invalid {
  border-color: red;
}

.is-label-invalid {
  color: red;
  font-size: 0.85rem;
}

.recaptcha-wrapper {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* or center */
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  padding: 8px;
}

/* End Contact Us Section */

/* Start CTA Section */
.cta-section {
  padding: 60px 20px;
  text-align: center;
}

.cta-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-heading .tag {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid #eee;
  border-radius: 32px;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 40px;
}

.cta-tag {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid #eee;
  border-radius: 32px;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 40px;
}

.cta-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #1a1a1a;
}

.cta-description {
  font-size: 18px;
  color: #4f4f4f;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /*background-color: #7ee96b;*/
  background-color: #1c0f9e;
  color: #eee;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s ease;
  gap: 8px;
}

.cta-button:hover {
  background-color: #6dd05e;
}

/* End CTA Section */

/* Start Footer Section */
.footer-section {
  background: #0b1215;
  padding: 60px 20px 40px;
  border-radius: 32px 32px 0 0;
  color: #d4d4d4;

  position: relative;
  z-index: 0;
}

.footer-wrapper {
  max-width: 1400px;
  margin: auto;
}

.footer-top {
  text-align: left;
  margin-bottom: 30px;
}

.footer-logo {
  height: 60px;
}

.footer-subtitle {
  margin-top: 10px;
  color: #b5b5b5;
  font-size: 16px;
  font-weight: 400;
}

.footer-divider {
  height: 1px;
  background: #1a1f22;
  margin: 30px 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #ffffff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #bdbdbd;
  /*font-size: 15px;*/
  transition: color 0.2s;
}

.footer-column ul li a:hover {
  color: #2e1cd1;
}

.contact-column ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-icon {
  background: #1a1f22;
  padding: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon iconify-icon {
  font-size: 18px;
  color: #d4d4d4;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-icon {
  font-size: 18px;
  background: #1a1f22;
  padding: 10px;
  border-radius: 8px;
  color: #d4d4d4;
  transition: all 0.2s ease;
}

.footer-social-icon:hover {
  background: #ffffff;
  color: #0b1215;
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid #1a1f22;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
  color: #9e9e9e;
}

.footer-links a {
  margin-left: 20px;
  color: #9e9e9e;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
}

/* End Footer Section */

/* Start Terms and Conditions Section */
.breadcrumb-header {
  background: linear-gradient(to left, #f5f6f9 30%, #ffffff 70%);
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #eee;
}

.breadcrumb-header-wrapper {
  max-width: 1400px;
  width: 100%;
  padding: 0 20px;
}

.breadcrumb-header-content {
  text-align: center;
}

.breadcrumb-header-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.breadcrumb-header-content p {
  font-size: 1.1rem;
  color: #6b7280; /* Muted gray-blue tone */
}

.terms-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px;
  background: #fff;
  color: #222;
}

.terms-wrapper {
  display: flex;
  gap: 40px;
}

/* Sticky Left Nav */
.terms-nav {
  flex: 0 0 250px;
  position: sticky;
  top: 120px;
  align-self: flex-start;
  background: #f8f9fb;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  height: fit-content;
}

.nav-indicator {
  position: absolute;
  left: 0;
  width: 4px;
  background: linear-gradient(180deg, #2e1cd1, #5b4bff);
  border-radius: 6px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.terms-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-nav li {
  margin-bottom: 10px;
}

/* Nav Links */
.terms-nav a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  transition: all 0.25s ease;
  position: relative;
}

.terms-nav a:hover {
  background: rgba(46, 28, 209, 0.08);
  color: #2e1cd1;
}

.terms-nav a.active {
  background: rgba(46, 28, 209, 0.12);
  color: #2e1cd1;
  font-weight: 600;
}

/* Content Area */
.terms-content {
  flex: 1;
}

.terms-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.terms-content h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: #2e1cd1;
}

.terms-content p {
  line-height: 1.8;
  color: #444;
}

.terms-content ul {
  padding-left: 20px;
}

.terms-content li {
  margin-bottom: 8px;
}

.effective-date {
  font-size: 1rem;
  color: #888;
  margin-bottom: 30px;
}

.terms-content section {
  scroll-margin-top: 140px;
}

.terms-content #contact-information a {
  text-decoration: none;
  color: #2e1cd1;
}

/* End Terms and Conditions Section */

/* Start Privacy Policy Section */

.privacy-policy-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px;
  background: #fff;
  color: #222;
}

.privacy-policy-wrapper {
  display: flex;
  gap: 40px;
}

/* Sticky Left Nav */
.privacy-policy-nav {
  flex: 0 0 250px;
  position: sticky;
  top: 120px;
  align-self: flex-start;
  background: #f8f9fb;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  height: fit-content;
}

.privacy-policy-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.privacy-policy-nav li {
  margin-bottom: 10px;
}

.privacy-policy-nav a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  transition: all 0.25s ease;
  position: relative;
}

.privacy-policy-nav a:hover {
  background: rgba(46, 28, 209, 0.08);
  color: #2e1cd1;
}

.privacy-policy-nav a.active {
  background: rgba(46, 28, 209, 0.12);
  color: #2e1cd1;
  font-weight: 600;
}

/* Content Area */
.privacy-policy-content {
  flex: 1;
}

.privacy-policy-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.privacy-policy-content h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: #2e1cd1;
}

.privacy-policy-content p {
  line-height: 1.8;
  color: #444;
}

.privacy-policy-content ol {
  list-style-type: upper-alpha;
}

.privacy-policy-content ul {
  list-style-type: disc;
  padding-left: 20px;
}

.privacy-policy-content li {
  margin-bottom: 8px;
}

.effective-date {
  font-size: 1rem;
  color: #888;
  margin-bottom: 30px;
}

.privacy-policy-content section {
  scroll-margin-top: 140px;
}

.privacy-policy-content #your-rights a,
#contact-information a {
  text-decoration: none;
  color: #2e1cd1;
}

/* End Privacy Policy Section */

/* Start Cookie Policy Section */

.cookie-policy-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px;
  background: #fff;
  color: #222;
}

.cookie-policy-wrapper {
  display: flex;
  gap: 40px;
}

/* Sticky Left Nav */
.cookie-policy-nav {
  flex: 0 0 250px;
  position: sticky;
  top: 120px;
  align-self: flex-start;
  background: #f8f9fb;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  height: fit-content;
}

.cookie-policy-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cookie-policy-nav li {
  margin-bottom: 10px;
}

.cookie-policy-nav a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  transition: all 0.25s ease;
  position: relative;
}

.cookie-policy-nav a:hover {
  background: rgba(46, 28, 209, 0.08);
  color: #2e1cd1;
}

.cookie-policy-nav a.active {
  background: rgba(46, 28, 209, 0.12);
  color: #2e1cd1;
  font-weight: 600;
}

/* Content Area */
.cookie-policy-content {
  flex: 1;
}

.cookie-policy-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.cookie-policy-content h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: #2e1cd1;
}

.cookie-policy-content p {
  line-height: 1.8;
  color: #444;
}

.cookie-policy-content ol {
  list-style-type: upper-alpha;
}

.cookie-policy-content ul {
  list-style-type: disc;
  padding-left: 20px;
}

.cookie-policy-content li {
  margin-bottom: 8px;
}

.effective-date {
  font-size: 1rem;
  color: #888;
  margin-bottom: 30px;
}

.cookie-policy-content section {
  scroll-margin-top: 140px;
}

.cookie-policy-content #contact-information a {
  text-decoration: none;
  color: #2e1cd1;
}

/* End Privacy Policy Section */

/* Start Harbor CTA Section */

.harbor-hero {
  padding: 120px 20px;
  background: linear-gradient(135deg, #f5f6ff 0%, #ffffff 100%);
}

.harbor-hero-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: auto auto;
  gap: 60px 80px;
  align-items: center;
}

/* Actions span full width under content */
.harbor-hero-actions {
  grid-column: 1 / 2;
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

/* LEFT */
.harbor-hero-content {
  max-width: 580px;
}

.harbor-hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(46, 28, 209, 0.08);
  color: #2e1cd1;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
}

.harbor-hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.1;
  color: #0b1215;
  margin-bottom: 28px;
}

.harbor-hero-title span {
  display: block;
  background: linear-gradient(90deg, #2e1cd1, #7b6cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.harbor-hero-description {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 40px;
}

.harbor-btn-primary {
  padding: 14px 34px;
  background: linear-gradient(90deg, #2e1cd1, #5f4cff);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 15px 40px rgba(46, 28, 209, 0.25);
  transition: all 0.3s ease;
}

.harbor-btn-primary:hover {
  transform: translateY(-4px);
}

.harbor-btn-secondary {
  padding: 14px 34px;
  border-radius: 999px;
  border: 1px solid #ddd;
  color: #0b1215;
  background: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.harbor-btn-secondary:hover {
  background: #f3f4f6;
}

/* RIGHT */
.harbor-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.harbor-hero-image {
  width: 100%;
  max-width: 600px;
  border-radius: 24px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

/* FLOATING CARDS */
.harbor-floating-card {
  position: absolute;
  background: #ffffff;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  font-size: 0.9rem;
  animation: floatCard 6s ease-in-out infinite;
}

.harbor-floating-card span {
  display: block;
  color: #888;
  font-size: 0.8rem;
}

.harbor-floating-card strong {
  color: #2e1cd1;
}

/* CARD POSITIONS */
.card-1 {
  top: 40px;
  left: -20px;
}
.card-2 {
  bottom: 60px;
  right: -30px;
}
.card-3 {
  bottom: -20px;
  left: 60px;
}

/* FLOAT ANIMATION */
@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .harbor-hero-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 40px;
    text-align: center;
  }

  .harbor-hero-content {
    order: 1;
  }

  .harbor-hero-visual {
    order: 2;
  }

  .harbor-hero-actions {
    order: 3;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .harbor-btn-primary,
  .harbor-btn-secondary {
    width: 85%;
    max-width: 340px;
  }

  .harbor-floating-card {
    display: none;
  }
}

/*End Harbor CTA Section*/

/*Start Portfolio Section*/
.portfolio-section {
  max-width: 1400px;
  margin: auto;
  padding: 60px 20px 120px; /* bottom space for grid */
  position: relative;
  z-index: 1;
}

.portfolio-filters {
  text-align: center;
  margin-bottom: 30px;
}

.filter-btn {
  margin: 0 8px;
  padding: 8px 20px;
  border-radius: 30px;
  background: transparent;
  border: 1px solid #ccc;
  cursor: pointer;
  transition: 0.3s;
}
.filter-btn.active,
.filter-btn:hover {
  background: #2e1cd1;
  color: #fff;
  border-color: #2e1cd1;
}

#portfolio-grid {
  min-height: 400px; /* adjust based on expected smallest content */
  transition: min-height 0.4s ease;
}

.masonry-grid {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
}

.grid-item {
  width: 340px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  opacity: 1;
  transform: scale(1);
  transition: all 0.3s ease;
}

.grid-item.hide {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
}

.grid-item.hidden-done {
  display: none !important;
}

.grid-item img {
  width: 100%;
  display: block;
}

.grid-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(11, 18, 21, 0.85);
  color: #fff;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.grid-item:hover .grid-overlay {
  opacity: 1;
}

.grid-overlay h3 {
  margin: 0;
  font-size: 16px;
  text-align: center;
}

/*End Portfolio Section*/

/*Start Services Section*/
.service-details-section {
  padding: 60px 20px;
}
.service-details-container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  gap: 40px;
}
.service-details-sidebar {
  flex: 0 0 280px;
}

.service-details-sidebar-box {
  background: #f5f7fa;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.service-details-sidebar-box h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1e0e62;
  margin-bottom: 20px;
}

.category-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.category-buttons button {
  background: #fff;
  border: none;
  color: #2b2b40;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  padding: 12px 16px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
  cursor: pointer;
}

.category-buttons button:hover,
.category-buttons button.active {
  background-color: #2e1cd1;
  color: #fff;
  border-color: #2e1cd1;
}

.category-buttons button i {
  font-size: 16px;
  transition: transform 0.2s;
}

.category-buttons button:hover i {
  transform: translateX(3px);
}

/* Content area */
.service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.service-content .hero-img {
  width: 100%;
  border-radius: 16px;
}
.service-content h2 {
  font-size: 28px;
  margin: 0;
  font-weight: bold;
}
.service-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  text-align: justify;
}

/* Detail block with image + list */
.detail-block {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: #f5f7fa;
  padding: 20px;
  border-radius: 8px;
}
.detail-block img {
  flex: 0 0 200px;
  border-radius: 6px;
  width: 400px;
  aspect-ratio: 16/9;
}
.detail-block .info {
  flex: 1;
  align-self: center;
}
.detail-block .info h3 {
  margin: 0 0 10px;
}
.detail-block .info ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.detail-block .info ul li {
  margin-bottom: 8px;
  position: relative;
}
.detail-block .info ul li iconify-icon {
  color: #2e1cd1;
}
.detail-block .info ul li::before {
  margin-right: 8px;
  color: #007bff;
}

/* Steps section */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.step-card {
  background: #f5f7fa;
  padding: 16px;
  border-radius: 8px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.step-card .badge {
  background: #007bff;
  color: #fff;
  font-weight: bold;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  flex-shrink: 0;
}
.step-card .step-info {
  flex: 1;
}
.step-card .step-info strong {
  display: block;
  margin-bottom: 4px;
}

.step-card .step-info p {
  text-align: left;
}
/*End Services Section*/

/*Start About Us Section*/
.about-us-details-section {
  padding: 60px 20px;
}
.about-us-details-container {
  max-width: 1400px;
  margin: auto;
  gap: 40px;
}
/* About Page Global Wrapper */
.about-wrapper {
  width: 100%;
}

/* Global Section Spacing */
.about-section {
  padding-bottom: 30px;
}

/* Titles */
.about-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #0b1215;
}

.about-title-dot {
  color: #2e1cd1;
}

.about-subtitle {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #0b1215;
}

/* Text */
.about-lead {
  font-size: 18px;
  text-align: justify;
  color: #4f4f4f;
  line-height: 1.75;
}

.about-text,
.about-subtext {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 24px;
}

/* Hero Image */
.about-hero-img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

.about-accordion {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  height: 320px;
  transition: grid-template-columns 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  will-change: transform, width, height;
  transition:
    height 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.accordion-item.active {
  transform: translateY(-4px);
}

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

.accordion-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.3),
    transparent
  );
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.accordion-text {
  position: absolute;
  bottom: 28px;
  left: 24px;
  right: 24px;
  color: #fff;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.45s ease,
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-item.active .accordion-overlay,
.accordion-item.active .accordion-text {
  transform: translateY(0);
  opacity: 1;
}

/* Accordion */

/* What We Do — Card Grid */
.about-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.about-card {
  background: #f5f7fa;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 1px 4px rgb(0 0 0 / 0.06);
  transition: 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.about-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111;
}

.about-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* Why Choose Us — Checklist Cards */
.about-checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 20px;
}

.about-checklist-card {
  display: flex;
  gap: 16px;
  background: #fff;
  padding: 20px 24px;
  border-radius: 16px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.about-checklist-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.check-icon {
  font-size: 28px;
  color: #2e1cd1;
  flex-shrink: 0;
}

.about-checklist-card h4 {
  font-size: 17px;
  margin: 0 0 4px;
  font-weight: 600;
}

.about-checklist-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Mobile Improvements */
@media (max-width: 600px) {
  .about-checklist-grid {
    grid-template-columns: 1fr;
  }

  .about-accordion {
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 14px;
  }

  .accordion-item {
    height: 140px;
    transition: height 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .accordion-item.active {
    height: min(60vh, 340px);
  }

  .accordion-overlay {
    opacity: 1; /* keep overlay visible on mobile */
  }

  .accordion-text {
    opacity: 1;
    transform: translateY(0);
  }
}

/*End About Us Section*/

/*Start Testimonials Page*/
.testimonials-section {
  font-family: "Montserrat", sans-serif;
  padding: 60px 20px;
}

.testimonials-wrapper {
  max-width: 1400px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
/*End Testimonials Page*/

/*Start Breadcrumb*/
.breadcrumb {
  max-width: 1200px;
  margin: 20px auto 0;
  padding: 0 20px;
  font-size: 14px;
  color: #6b7280; /* Tailwind slate-500 equivalent */
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  animation: fadeSlideIn 0.6s ease-out forwards;
  animation-delay: 0.3s;
}

.breadcrumb a {
  text-decoration: none;
  color: #2e1cd1; /* Your brand color */
  font-weight: 500;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: #9ca3af; /* Muted gray for current page */
}

.breadcrumb iconify-icon {
  transition: transform 0.3s ease;
}

.breadcrumb a:hover + iconify-icon {
  transform: translateX(2px);
}

.breadcrumb.show {
  opacity: 1;
  transform: translateY(0);
}

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

/*End Breadcrumb*/

/*Start Scroll To Top*/
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #f1f1f1;
  color: #000;
  border: 1px solid #2e1cd1;
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.scroll-to-top iconify-icon {
  color: #2e1cd1;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background-color: #e2e2e2;
}
/*End Scroll To Top*/

/*Start Lazy Load*/
.lozad {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.lozad.loaded {
  opacity: 1;
}

.lazy-wrapper {
  width: 100%;
  position: relative;
  padding-bottom: 67%; /* Adjust based on image aspect ratio */
  overflow: hidden;
}

.lazy-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.lazy-image.loaded ~ .image-wrapper::before {
  content: none;
}

.lazy-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.lazy-image.loaded {
  opacity: 1;
}

/*End Lazy Load*/

/*Start Cookie Consent*/
.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.cookie-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal {
  width: 95%;
  max-width: 600px;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  transform: translateY(30px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-overlay.active .cookie-modal {
  transform: translateY(0) scale(1);
}

.cookie-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
}

#cookie-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.cookie-description {
  margin: 15px 0 25px;
  color: #555;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.cookie-option p {
  font-size: 0.9rem;
  color: #666;
  margin: 5px 0 0;
}

/* Toggle Switch */
.switch {
  position: relative;
  width: 46px;
  height: 24px;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 50px;
  transition: 0.3s;
}

.slider::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}

.switch input:checked + .slider {
  background: #2e1cd1;
}

.switch input:checked + .slider::before {
  transform: translateX(22px);
}

/* Buttons */
.cookie-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 25px;
}

.cookie-actions button {
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 500;
}

.cookie-actions .primary {
  background: #2e1cd1;
  color: #fff;
}

/*End Cookie Consent*/

/* Responsive */

@media (max-width: 1024px) {
  .nexlume-apps-grid {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }

  .nexlume-apps-content {
    max-width: 100%;
  }

  .nexlume-apps-title {
    font-size: 32px;
  }

  .nexlume-apps-description {
    font-size: 1rem;
  }
}

@media (max-width: 992px) {
  .top-bar-container {
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
  }

  .industries-section-title {
    font-size: 24px;
  }

  .industries-wrapper {
    flex-direction: column-reverse;
    align-items: center;
  }

  .icon-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .icon-grid .row {
    justify-content: center;
    flex-wrap: wrap;
  }
  .service-details-container {
    flex-direction: column-reverse;
  }
  .service-details-sidebar {
    order: 2;
  }
  .service-content {
    order: 1;
  }
  .detail-block img {
    display: none;
  }

  .terms-wrapper,
  .privacy-policy-wrapper {
    flex-direction: column;
  }

  .terms-nav,
  .privacy-policy-nav {
    display: none;
  }
}

@media (max-width: 768px) {
  /*Start Navigation Bar*/

  .nav-links {
    position: absolute;
    top: 70px; /* height of navbar */
    right: 20px;
    background-color: white;
    flex-direction: column;
    width: 180px;
    padding: 1rem;
    display: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  /*End Navigation Bar*/

  /*Start Hero*/

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-left {
    align-content: center;
    flex: auto;
  }

  .hero-left h1 {
    font-size: 2.2rem;
  }

  .hero-left p {
    font-size: 0.95rem;
  }

  .cta-buttons {
    justify-content: center;
  }

  .hero-right {
    display: none;
  }

  /*Start Carousel*/

  .embla__slide {
    flex: 0 0 50%;
  }
  /*End Carousel

  /*End Hero*/

  /*Start Features*/
  .feature-wrapper {
    flex-direction: column;
    height: auto;
    box-shadow: none;
    padding: 16px;
  }

  .feature-tab {
    flex-direction: column;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #eee;
    padding: 14px 20px;
    font-size: 16px;
    position: relative;
  }

  .feature-tab::after {
    content: "+";
    position: absolute;
    right: 20px;
    transition: transform 0.3s;
  }

  .feature-tab.active::after {
    content: "-";
  }

  .feature-content-wrapper {
    display: none;
    padding: 20px;
    border-top: 1px solid #f0f0f0;
  }

  .feature-content-wrapper.active {
    display: block;
  }

  .feature-content {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .feature-image {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
  }

  .feature-image img {
    max-width: 100%;
    height: auto;
  }
  /*End Features*/

  /*Start Global Impact*/
  .global-impact-section-title {
    font-size: 24px;
  }
  /*End Global Impact*/

  /*Start Testimonial*/

  .testimonial-heading h2 {
    font-size: 24px;
  }

  .testimonial-wrapper {
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .testimonial-highlight {
    justify-content: center;
  }

  .testimonial-image {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 90%;
    scroll-snap-align: start;
    margin-right: 20px;
  }

  .testimonial-card .quote {
    font-size: 60px;
    color: #2e1cd1;
  }

  .testimonial-text {
    font-size: 18px;
  }

  /*End Testimonial*/

  /*Start What We Do*/
  .card-inner img {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  /*End What We Do*/

  /*Start Nexlume Offering*/

  .app-buttons {
    justify-content: center;
  }

  .nexlume-apps-grid {
    flex-direction: column;
  }

  .nexlume-apps-content {
    flex-direction: column;
    text-align: center;
    flex: auto;
  }

  .nexlume-apps-text {
    padding: 0;
  }

  .nexlume-apps-image {
    flex: auto;
  }

  .slider-controls {
    position: static;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-direction: row;
  }

  .slider-controls button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .slider-controls button:hover {
    background-color: #f3f3f3;
  }

  .slider-indicators {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-direction: row;
  }

  .slider-indicators div {
    width: 24px;
    height: 8px;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
  }

  .slider-indicators .active {
    background-color: #2b2b2b;
  }

  .slider-indicators .indicator-pill {
    width: 28px;
    height: 8px;
    border-radius: 10px;
    background-color: #e0e0e0;
    transition: background-color 0.3s ease;
  }

  .slider-indicators .indicator-pill.active {
    background-color: #2c2c2c;
    height: 8px;
  }

  /*End Nexlume Offering*/

  /*Start CTA*/
  .cta-title {
    font-size: 24px;
  }
  /*End CTA*/

  /*Start Footer*/
  .footer-top {
    text-align: center;
    margin-bottom: 30px;
  }

  .footer-content {
    flex-direction: row;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .social-column {
    flex: auto;
    text-align: center;
  }

  .footer-socials {
    display: flex;
    gap: 12px;
    text-align: center;
  }

  .footer-links a {
    margin: 0 10px;
  }

  /*End Footer*/

  /*Start Portfolio*/
  .portfolio-section {
    padding: 60px 0px 120px; /* bottom space for grid */
  }
  .filter-btn {
    padding: 8px;
  }
  .masonry-grid {
    column-count: 2;
  }
  /*End Portfolio*/

  /*Start Contact Us Section */
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-form-area {
    padding: 1rem;
    max-width: 100%;
  }

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

  .contact-form-area p {
    font-size: 16px;
    flex-wrap: wrap;
  }
  .info-card-grid {
    grid-template-columns: 1fr;
  }

  /*End Contact Us Section */

  /*Start Terms and Conditions */
  .terms-wrapper,
  .privacy-policy-wrapper {
    flex-direction: column;
    gap: 0px;
  }

  .terms-nav,
  .privacy-policy-nav {
    display: none;
  }
  /*End Terms and Conditions */
}

@media (max-width: 600px) {
  /*Start Feature*/
  .feature-tab {
    font-size: 14px;
  }

  .features-header h2 {
    font-size: 24px;
  }

  .feature-text h2 {
    font-size: 22px;
  }

  .feature-button {
    font-size: 14px;
    padding: 8px 16px;
  }
  /*End Feature*/
  .nexlume-apps-title {
    font-size: 32px;
  }

  .nexlume-apps-button {
    width: 100%;
    text-align: center;
    padding: 14px;
  }

  .nexlume-apps-features li {
    justify-content: left;
  }

  .terms-wrapper,
  .privacy-policy-wrapper {
    flex-direction: column;
  }
  .terms-nav,
  .privacy-policy-nav {
    display: none;
  }
}
