* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

@font-face {
  font-family: 'Mulish';
  font-display: swap;
}



::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  border-radius: 0;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--bg-blue-light);
  border-radius: 8px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--bg-blue);
}

:root {
  /* Background colors */
  --bg-blue: #311d8a;
  --bg-blue-dark: #290350;
  --bg-blue-light: #3898ec;
  --accent: #f1f7ff;
  --bg-white: #ffffff;
  --bg-black: #000000;
  --bg-grey: #c1c7cc;
  /* Text colors */
  --text-dark: #15153e;
  --text-light: #5c6b78;
  --text-blue: #008bd4;

  /* gradient colors */
  --gradient-bg: linear-gradient(90deg, #7A2180 1.82%, #E40276 98.91%);
}


body {
  font-family: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
  background-color: var(--bg-white);
  line-height: 1.6;
  transition: all 0.3s ease;
}

.container-fluid {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  height: auto;
}

@media (max-width: 991px) {
  .container-fluid {
    width: 100%;
  }

  
}

.wrapper {
  padding: 6rem 0;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}


.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* CSS */
.main-btn {
  align-items: center;
  background-color: var(--bg-blue-dark);
  border: 2px solid var(--bg-blue-light);
  border-radius: 100px;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 600;
  justify-content: center;
  line-height: 20px;
  max-width: fit-content;
  min-height: 40px;
  min-width: 0px;
  overflow: hidden;
  padding: 0px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  touch-action: manipulation;
  transition: background-color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, box-shadow 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
  text-wrap-mode: nowrap;
}

.main-btn:hover,
.main-btn:focus {
  background-color: var(--bg-white);
  text-decoration: none;
  color: var(--bg-blue);
}

.main-btn:active {
  background: var(--bg-blue-dark);
  color: rgb(255, 255, 255, .7);
}

.main-btn:disabled {
  cursor: not-allowed;
  background: rgba(0, 0, 0, .08);
  color: rgba(0, 0, 0, .3);
}

.fill-btn {
  align-items: center;
  background-color: var(--bg-white);
  border: 2px solid var(--bg-blue-light);
  border-radius: 100px;
  box-sizing: border-box;
  color: var(--bg-blue);
  cursor: pointer;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 600;
  justify-content: center;
  line-height: 20px;
  max-width: fit-content;
  min-height: 40px;
  min-width: 0px;
  overflow: hidden;
  padding: 0px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  touch-action: manipulation;
  transition: background-color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, box-shadow 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
  text-wrap-mode: nowrap;
}

.fill-btn:hover,
.fill-btn:focus {
  background-color: var(--bg-blue-light);
  text-decoration: none;
  color: #ffffff;
}

.fill-btn:active {
  background: var(--bg-blue-light);
  color: rgb(255, 255, 255, .7);
}

.fill-btn:disabled {
  cursor: not-allowed;
  background: rgba(0, 0, 0, .08);
  color: rgba(0, 0, 0, .3);
}


@media (max-width: 568px) {
  .main-btn,
  .fill-btn {
    font-size: 0.8rem;
    text-wrap-mode: wrap;
  }
}


.navbar {
  background: var(--bg-white);
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  padding: 2rem 0;

  &::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    /* Adjust height as needed */
    background: var(--gradient-bg);
    z-index: -1;
  }
}

.navbar-logo {
  height: 40px;
  transform: scale(1.6) translateX(20px);
  transition: transform 0.3s ease-in-out;
}

.navbar-nav .nav-link {
  color: var(--text-light, #333);

  margin: 0 5px;
  transition: color 0.3s ease;
  text-wrap-mode: nowrap;

}

.navbar-nav .nav-link:hover {
  color: var(--text-blue);
  text-decoration: none;
  background: transparent !important;
}

.dropdown-toggle::after {
  display: none;
}


.dropdown-menu {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(-10px);
  transition-delay: 0s, 0s;
  padding: 0.5rem;
  visibility: hidden;
  display: none;

}

.nav-item.dropdown {
  /* position: relative; */
}


/* Mega Menu Layout */


.dropdown-menu.mega-menu {
  width: max-content;
  padding: 1rem;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: white;
  border-radius: 0.5rem;
  z-index: 999;
}


.nav-item.dropdown:hover .dropdown-menu {
  transition-delay: 100ms, 100ms;
}


/* Hover effect for dropdown on desktop */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    display: block;
  }
}


.dropdown-item {
  transition: 0.3s ease;
  padding: 0.5rem 1rem;
  margin: 0.5rem 0rem;
  border-radius: 4px;

  i {
    color: var(--text-blue);
    font-size: 1.5rem;
    margin-right: 4px;
    width: 2rem;
    display: inline-block;
    transition: all 0.3s ease;
  }
}



.dropdown-item:hover {
  background-color: var(--accent);
  text-decoration: none;
  color: var(--text-blue);

  i {
    color: var(--bg-blue-dark);
  }
}

.offcanvas-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-blue);
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-menu.show {
  animation: dropdownFadeIn 300ms ease forwards;
}



.mega-menu .col {
  flex: 1;
  display: flex;
  flex-direction: column;
}

@media (max-width: 991px) {
  .dropdown-menu.mega-menu {
    width: 100% !important;
    transform: translateX(0%) !important;
    padding: 0.5rem;

    .dropdown-item {
      padding: 1rem;

      i {
        font-size: 1rem;
      }
    }
  }
}

@media (max-width: 572px) {
  .offcanvas.show {
    width: 100%;
  }
}

/* Dropdown Animation */
.nav-item.dropdown .dropdown-menu {
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown .dropdown-menu.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

/* scroll to top btn */
.scrollToTopBtn {
  background-color: var(--bg-white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--bg-blue);
  cursor: pointer;
  font-size: 2rem;
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px);
  transition: all 0.4s ease;
  box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset, rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset, rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset, rgba(0, 0, 0, 0.06) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
}

.scrollToTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scrollToTopBtn:hover {
  background-color: var(--bg-blue-dark);
  color: var(--accent);
}

/* Sticky contact bar css */
.floating-contact-bar {
  position: fixed;
  top: 50%;
  left: -200px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  z-index: 9999;
}

.contact-fab {
  display: flex;
  align-items: center;
  justify-content: end;
  background-color: var(--bg-blue);
  /* Bright purple */
  color: white;
  padding: 0.75rem;
  border-radius: 50px;
  box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, .15);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  width: 5rem;
  /* collapsed state */
  overflow: hidden;
  transition: all 0.5s ease;
  white-space: nowrap;
  text-decoration: none;
}

@media (max-width: 786px) {
  .floating-contact-bar {
    display: none;
  }
}

@media (max-width: 992px) {
  .floating-contact-bar {
    top: 80%;
    left: -210px;

    i {
      font-size: 0.8rem !important;
    }
  }

}

.contact-fab span {
  opacity: 0;
  margin-right: 0.5rem;
  transition: opacity 0.3s ease, margin 0.3s ease;
  white-space: nowrap;
}

.contact-fab i {
  font-size: 1rem;
  flex-shrink: 0;
  transition: all 0.3s ease-in-out;
}

/* Hover expansion */
.contact-fab:hover {
  width: 12rem;
  justify-content: end;

  i {
    font-size: 1.2rem;
  }
}

.contact-fab:hover span {
  opacity: 1;
}


/* hero banner css   */
.hero-banner {
  background-color: #fff;
  position: relative;
  overflow: hidden;

  .text-content {
    z-index: 2;
  }
}


.hero-banner h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
}

.hero-banner .highlight {
  color: var(--text-blue);
  /* Adjust to your theme */
}

.hero-banner .main-btn {
  font-size: 1rem;
  padding: 0.75rem 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.banner-image-wrapper {
  position: absolute;
  z-index: 1;
  object-fit: contain;
  width: 42%;
  height: 100%;
  inset: auto 0% 0% auto;
  /* overflow: hidden; */
  padding: 0;

}

.angled-gradient-strip {
  position: absolute;
  top: 30%;
  left: 10%;
  width: 150px;
  /* Thickness of the stripe */
  height: 200%;
  /* Tall enough to span banner */
  background: linear-gradient(to right,
      var(--accent) 0%,
      #4b4c6a 30%,
      var(--bg-blue-light) 45%,
      var(--bg-grey) 65%,
      transparent 85%);
  transform: rotate(25deg) translateY(-50%);
  transform-origin: top left;
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 992px) {
  .angled-gradient-strip {
    left: 60%;
  }
}

@media (max-width: 786px) {
  .hero-banner h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 450px) {
  .hero-banner h1 {
    font-size: 1.8rem;
  }

  .hero-banner .main-btn {
    font-size: 0.8rem;
    padding: 0 1.5rem;
  }
}

.banner-image-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  clip-path: polygon(31% 0, 100% 0%, 100% 100%, 0% 100%);
}

.hero-banner h1,
.hero-banner .main-btn,
.banner-image-wrapper img,
.intro-stats h3,
.testimonials-wrap .item {
  will-change: transform, opacity;
}



.trusted-companies {
  text-align: center;
  padding: 3rem 0;
  background-color: #fff;
}

.trusted-companies h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--bg-blue-dark);
  margin-bottom: 2rem;
}

.trusted-companies .highlight {
  color: var(--bg-blue-light);
}

.logo-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 10px 0;
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 2rem;
  animation: scroll-marquee 30s linear infinite;
}

.logo-slide {
  display: flex;
  gap: 2rem;
}

.logo-slide img {
  height: 60px;
  width: 140px;
  padding: 10px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.logo-marquee:before,
.logo-marquee:after {
  position: absolute;
  top: 0;
  content: '';
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-marquee:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), #fff);
}

.logo-marquee:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #fff);
}

/* Updated Keyframes */
@keyframes scroll-marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}



.company-intro h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #15153e;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.company-intro .highlight {
  color: var(--bg-blue-dark);
}

.company-intro p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stat-box {
  text-align: center;
}

.stat-box img {
  height: 80px;
  margin-bottom: 1rem;
}

.stat-box h3 {
  font-size: 2rem;
  font-weight: bold;
  color: var(--bg-blue);
  margin-bottom: 0.25rem;
}

.stat-box p {
  color: var(--text-light);
  font-size: 1rem;
}


@media (max-width: 756px) {

  .stat-box img {
    height: 50px;
  }

  .stat-box h3 {
    font-size: 1.8rem;
  }

  .stat-box p {
    font-size: 0.8rem;
  }
}



.services-industries {
  background-color: var(--accent);
}

.services-industries .box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
}

.services-industries h2 {
  margin-top: 1.5rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--bg-blue);
}

.services-industries p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin: 1rem 0 1.5rem;
}


/* Image */
.banner-img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive tweak */
@media (max-width: 768px) {
  .services-industries .box {
    padding: 1rem;
  }

  .services-industries h2 {
    font-size: 1.5rem;
  }

  .services-industries p {
    font-size: 0.95rem;
  }
}


.video-section {
  background: #ffffff;
  padding: 4rem 1rem;
}

.video-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a3d;
  margin-bottom: 2rem;
}

.video-thumbnail-wrapper {
  position: relative;
  width: 100%;
  max-width: 960px;
  min-height: 250px;
  margin: 0 auto;
  padding-top: 40.25%;
  /* 16:9 aspect ratio */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  cursor: pointer;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

.thumbnail-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--bg-blue-light);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}


.invensis-globe-section {
  background: linear-gradient(to right, rgb(28, 15, 48) 40%, rgb(150 127 178) 60%, rgb(24 2 50) 90%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
}

.globe-image {
  transform-origin: center center;
  will-change: transform;
  position: absolute;
  right: 0;
  transform: translateY(-50%);
  top: 50%;
}

@media (max-width: 992px) {
  .invensis-globe-section {
    background: linear-gradient(0deg, rgb(28, 15, 48) 10%, rgb(154 126 189) 20%, rgb(24 2 50) 30%) !important;
  }
}

.invensis-globe-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.invensis-globe-section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #d0d0e0;
  margin-bottom: 1.2rem;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  margin-top: 2rem;
}

.stat h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat p {
  font-size: 1rem;
  line-height: 1.4;
  color: #ccc;
}

@media (max-width: 568px) {
  .navbar-nav .dropdown:hover > .dropdown-menu {
        display: block;
    }
  .stats {
    gap: 1rem;
  }

  .stat h3 {
    font-size: 1.5rem;
  }
  .breadcrumb-container .breadcrumb {
    width: 100% !important;
  }
  .breadcrumb-item+.breadcrumb-item::before {
    margin-right: 0 !important;
  }
}



.heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
  padding: 8px;
}

.description {
    h2, h3 {
        font-size: 2rem;
          font-weight: 700;
          color: var(--text-dark);
          margin-bottom: 2rem;
    }
}

/* testimonial */
.testimonials-wrap {
  padding: 6rem 0;
  background: white;
  /*height: 80vh;*/
  display: flex;
  align-items: center;
  justify-content: center;

  .heading-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bg-blue);
    margin-bottom: 2rem;
    text-align: center;
  }

  .testimonial-box {
    display: block;
    position: relative;
    padding: 30px 20px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .03);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, .08);
    transition: all 0.3s ease-in-out;

    &:hover {
      background: var(--bg-grey);
    }
  }

  .carousel-testimonial .item {
    padding: 30px;
  }

  .quote {
    position: absolute;
    top: -23px;
    color: var(--bg-blue-light);
    font-size: 27px;
  }

  .name {
    margin-bottom: 0;
    line-height: 14px;
    font-size: 17px;
    font-weight: 500;
  }

  .position {
    color: var(--text-light);
    font-size: 14px;
  }
}



.carousel-testimonial .owl-nav {
  text-align: center;
  gap: 20px;
  display: flex;
  justify-content: center;
}

.carousel-testimonial .owl-nav button.owl-next,
.carousel-testimonial .owl-nav button.owl-prev {
  padding: 0 12px !important;
}

.carousel-testimonial .owl-nav button {
  outline: none;
  padding: 0;
}

.carousel-testimonial .owl-nav button.owl-next span,
.carousel-testimonial .owl-nav button.owl-prev span {
  display: block;
  font-size: 40px;
  width: 25px;
  height: 25px;
  vertical-align: 0px;
  line-height: 16px;
}

.carousel-testimonial .owl-nav button.owl-next.disabled,
.carousel-testimonial .owl-nav button.owl-prev.disabled {
  opacity: 0.5;
}


.case-study-cards {
  background: #f7f7f7;

  .heading-section {
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;

    p {
      color: #444444;
      font-size: 1rem;
    }

  }

  .heading-section h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--bg-blue);
    margin-bottom: 2rem;
  }



  .container {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 4rem;

  }
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  
  .desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

.card {
  position: relative;
  padding: 1.5rem;
  border-radius: 10px;
  min-height: 350px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, .08);
  border: none;
  opacity: 1;
}

.card-grid .card:nth-of-type(even) {
  transform: translateY(30px);
}

@media (min-width: 769px) {

  .card-grid .card:nth-of-type(1),
  .card-grid .card:nth-of-type(4) {
    color: #fff;

    /*&::before {*/
    /*  background: rgba(255, 255, 255, 1);*/
    /*}*/

    /*&:hover {*/
    /*  color: #fff;*/
    /*}*/

  }

}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) -70%, rgba(0, 0, 0, 0.9) 107%), linear-gradient(to bottom, rgba(86, 66, 218, 0.3), rgba(86, 66, 218, 0.3));
  /* Initial overlay */
  transition: background 0.4s ease;
  z-index: 1;
}

.card:hover::before {
  background: rgba(0, 0, 0, 0.25);
  /* Slightly lighter on hover */
}

/* default text styling */
.card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  z-index: 2;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 2.5rem;
  z-index: 2;
}


.card .explore-btn {
  background: #f0f0f0;
  color: #000;
}




/* Explore More button (shown only on hover) */
.card .explore-btn {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  color: #fff;
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
  z-index: 2;
}

.card:hover .explore-btn {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 1200px) {

  .container {
    flex-direction: column;
  }

}

@media (max-width: 768px) {
  .card-grid .card:nth-of-type(even) {
    transform: translateY(0px);
  }

  .card-grid .card:nth-of-type(1),
  .card-grid .card:nth-of-type(4) {
    color: #fff;

    &::before {
      background: rgba(0, 0, 0, 0.5);
    }

    &:hover {
      color: #fff;
    }

  }
}


.contact-quote-section {
  background-color: #ffffff;

  .bg-blue {
    background-color: var(--bg-blue);
  }

  .contact-details {
    i {
      color: #fff;
      min-width: 32px;
      padding: 0.5rem;
      background: var(--bg-blue-light);
      border-radius: 50%;
      width: 2rem;
      height: 2rem;
      display: inline-block;
      text-align: center;
    }

    li {
      font-size: 15px;
      line-height: 1.6;
      display: flex;
      justify-content: flex-start;
      align-items: self-start;
      gap: 0.6rem;
    }
  }

  .social-icons {
    a {
      font-size: 18px;
      color: #fff;
      transition: all 0.3s;

      &:hover {
        color: #ccc;
      }
    }
  }


}

form {
  label {
    font-weight: 500;
    color: #333;
    font-size: 14px;
  }

  .form-control,
  .form-select {
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;

    &:focus {
      box-shadow: none;
      border-color: #007bff;
    }
  }

  textarea.form-control {
    resize: none;
  }

  button {
    font-weight: 600;
    padding: 10px 20px;
  }
}

.footer {
  background-color: var(--bg-blue-dark);
  color: #fff;
  padding: 3rem 0;
  border-radius: 2rem 2rem 0 0;

  .footer-top {
    .footer-brand {
      .footer-logo {
        width: 200px;
        margin-bottom: 2rem;
        filter: brightness(2);
      }

      .social-icons {
        a {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          width: 36px;
          height: 36px;
          margin-right: 10px;
          border-radius: 50%;
          background: #fff;
          color: var(--bg-blue-dark);
          font-size: 14px;
          transition: all 0.3s;

          &:hover {
            background: var(--bg-blue-light);
            color: #fff;
          }
        }
      }
    }

    .footer-links {
      h5 {
        font-weight: 600;
        font-size: 16px;
        margin-bottom: 1rem;
      }

      ul {
        list-style: none;
        padding-left: 0;

        li {
          margin-bottom: 0.5rem;

          a {
            color: #fff;
            text-decoration: none;

            &:hover {
              text-decoration: underline;
            }
          }
        }
      }
    }
  }

  .footer-services {
    h3 {
      font-size: 24px;
      font-weight: 700;
    }

    a {
      &:hover {
        text-decoration: underline;
      }
    }

    .service-block {
      padding-left: 1rem;

      h6 {
        font-weight: 600;
        color: #4fd1c5;
        margin-top: 1.5rem;
      }

      ul {
        padding-left: 1rem;
        list-style: disc;

        li {
          font-size: 14px;
          color: #fff;
          margin-bottom: 0.5rem;
        }

        a {
          color: #fff;
          margin-left: 1rem;
          text-decoration: none;

          &:hover {
            text-decoration: underline;
          }
        }
      }

    }

    .border-md-start {
      border-left: 1px solid rgba(255, 255, 255, 0.2) !important;
    }
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;

    .footer-policies {
      a {
        color: #fff;
        margin-left: 1rem;
        text-decoration: none;

        &:hover {
          text-decoration: underline;
        }
      }
    }
  }
}

.banner-section {
  color: #fff;
  position: relative;
  
  background: linear-gradient(to right, rgb(224 220 226 / 16%) 40%, rgb(191 185 199 / 99%) 80%, rgb(181 164 199 / 87%) 100%);

  .bg-image {
    position: absolute;
    z-index: 1;
    object-fit: contain;
    width: 42%;
    height: 100%;
    inset: auto 0% 0% auto;
    padding: 0;
    clip-path: polygon(30% 0, 100% 0%, 100% 100%, 0% 100%);
    opacity: 1;
    img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }
  }
  
  .desc, .desc p {
      display: -webkit-box;
      -webkit-line-clamp: 5;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: clip;
      margin-bottom: 1rem;
  }
 
  .content {
    z-index: 2;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;

    h1 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    p {
      font-size: 1rem;
      line-height: 24px;
      margin-bottom: 2rem;
      color: #fff !important;
      
    }

    .stats {
      gap: 2rem;

      .stat-item {
        margin-right: 2rem;

        h3 {
          font-size: 2rem;
          font-weight: bold;
        }

        p {
          margin: 0;
          font-size: 1rem;
          text-wrap-mode: nowrap;
        }
      }
    }
  }

  img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }
}


@media (max-width: 991px) {
    .banner-section {
        background: linear-gradient(to right, rgb(28, 15, 48) 40%, rgba(86, 69, 106, 0.99) 80%, rgba(52, 0, 114, 0.45) 100%);
    }

  .heading {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}


@media (max-width: 678px) {
  .banner-section .content {
    h1 {
      font-size: 2rem;
    }
  }

  .heading {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    text-align: center;
  }
}


.mission-section {
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bg-blue-dark);
  }

  .info-block {
    h5 {
      font-weight: 600;
      color: var(--bg-blue);
    }

    p {
      color: var(--text-light);
    }
  }

  .info-block .icon {
    background-color: var(--accent);
    padding: 1rem;
    border-radius: 12px;
    font-size: 1.5rem;
    color: #1ec7c1;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

}

.values-section {
  background-color: #f7f7f7;
}

.image-wrapper img {
  object-fit: cover;
  border-radius: 0.5rem;
  width: 100%;
  height: 100%;
}

.value-box {
  .icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 1rem;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }


  p {
    font-size: 1rem;
    color: var(--text-light);
  }

}

.values-section .row>div:nth-of-type(1) .icon {
  background-color: #d1e7ff !important;
  color: #007bff !important;
}

.values-section .row>div:nth-of-type(2) .icon {
  background-color: #d0ffdb;
  color: #28a745;
}

.values-section .row>div:nth-of-type(3) .icon {
  background-color: #cff9ff;
  color: #17a2b8;
}

.values-section .row>div:nth-of-type(4) .icon {
  background-color: #ffd8dc;
  color: #dc3545;
}

@media (max-width: 767px) {
  .value-box {
    flex-direction: row;
    text-align: left;
  }
}


.breadcrumb-container {
  background-color: #eee;
  position: sticky;
  top: 5rem;
  z-index: 2;

  .breadcrumb {
    width: 90%;
    max-width: 1400px;
    padding: 12px 16px;
    font-size: 14px;
    margin: 0 auto;
    border-radius: 0;
    list-style-type: none;
  }


  .breadcrumb-item+.breadcrumb-item::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f105";
    color: var(--text-light);
    margin: 0 6px;
  }


  .breadcrumb-item a {
    color: var(--bg-blue);
    text-decoration: none;
  }

  .breadcrumb-item a:hover {
    text-decoration: underline;
    color: var(--bg-blue-light);
  }

  .breadcrumb-item.active {
    color: #2c2c5a;
    font-weight: 500;
  }
}


.clients-section {
  background-color: #fff;

  .client-logo-box {
    padding: 10px;
    background: #fff;
    border-radius: 8px;
    height: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
  }

  .client-logo-box img {
    height: 60px;
    width: 140px;
    object-fit: contain;
    transition: filter 0.3s ease;
    aspect-ratio: auto 106 / 48;
  }

  .client-logo-box:hover {
    transform: scale(1.05);
  }

  .client-logo-box:hover img {
    filter: none;
  }
}

.quality-section {
  background-color: #fff;

  .cert-box {
    background: #fafafa;
    border-radius: 12px;
    padding: 30px 20px;
    height: 100%;
  }

}

.about-highlights .icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: #f5f5f5;
  margin: 2rem 0;
  border-radius: 8px;
}

@media (max-width: 567px) {
  .about-highlights {

    .border-end,
    .border-bottom {
      border: none !important;
      text-align: center;
    }
  }
  .breadcrumb-item{
    padding-left: 0 !important;
  }
}


.about-highlights .row>div:nth-of-type(1) .icon-box {
  background-color: #e6f2ff !important;

  i {
    color: #007bff !important;
  }
}

.about-highlights .row>div:nth-of-type(2) .icon-box {
  background-color: #e3ffea;

  i {
    color: #28a745;
  }
}

.about-highlights .row>div:nth-of-type(3) .icon-box {
  background-color: #fff8e9;

  i {
    color: #b87817;
  }
}

.about-highlights .row>div:nth-of-type(4) .icon-box {
  background-color: #fcf3ff;

  i {
    color: #9f35dc;
  }
}


.case-studies-card,
.blog-card {
  border: none;
  transition: all 0.3s ease-in-out;
  height: 100%;
  padding: 0;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-white);
  margin-bottom: 1rem;

  .card-body {
    padding: 1.5rem;
  }

  .card-title {
    font-size: 1.1rem;
    line-height: 30px;
    color: var(--text-dark);
    min-height: 65px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  small {
    font-weight: 600;
    padding-bottom: 6px;
    font-size: 12px;
    line-height: 14px;
    border-bottom: 2px solid var(--bg-blue-light);
  }

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: all 0.5s ease-in-out;

    
  }

  .desc {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .date {
    font-size: 14px;
  }

  p {
    color: var(--text-light);
  }
}

.blog-card:hover, .case-studies-card:hover {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.news-card {
  height: 100%;
  border-radius: 8px;
  background-color: #ffffff;

  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transition: all 0.3s ease-in-out;

  .card-body {
    padding: 1.5rem;
  }

  .desc {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .card-title {
    font-size: 1.1rem;
    line-height: 26px;
    color: var(--text-blue);
    min-height: 55px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

}


.news-card:hover {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}


.case-studies-card,
.blog-card,
.news-card {
  a:hover {
    text-decoration: underline;
  }
}

@media (max-width: 768px) {

  .case-studies,
  .blog-card,
  .news-card {
    .card-title {
      font-size: 1rem;
    }

    .card-body {
      padding: 1.2rem;
    }
  }


}

.right-panel {
  height: 100%;

  h4 {
    text-transform: uppercase;
    color: var(--bg-blue);
    font-weight: 700;
  }

  ul {
    li {
      margin-bottom: 0.8rem;
      color: var(--bg-blue-dark);
      font-weight: 500;
      transition: all 0.5s ease-in-out;

      &:hover {
        text-decoration: underline;
      }
    }
  }


}

.video-card {
    margin-bottom: 2rem;
}

.sticky-block {
  position: sticky;
  top: 15%;
  align-self: flex-start;
}

.min-height {
  min-height: 1000px;
}

/* Reset and base styling for pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  /* Space between items */
  padding: 0;
  list-style: none;
}


.page-item {
  display: inline-block;
}

.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: var(--bg-white);
  color: var(--bg-blue) !important;
  text-decoration: none;
  border: 1px solid var(--bg-blue-light);
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s;

  &:focus {
    outline: none;
    box-shadow: none;
  }
}


/* Active page styling */
.page-item.active .page-link {
  background-color: var(--accent);
}

/* Disabled state for Previous/Next */
.page-item.disabled .page-link {
  color: var(--text-light) !important;
  background-color: var(--bg-white) !important;
  border-color: var(--bg-white) !important;
  cursor: not-allowed !important;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  width: auto;
  padding: 0 15px;
  background-color: transparent;
  border: none;
  font-weight: 500;
}

/* Hover effect for Previous and Next */
.page-item:first-child .page-link:hover,
.page-item:last-child .page-link:hover {
  background-color: transparent;
  color: var(--bg-blue);
}

/* Ensure active state doesn't interfere with Previous/Next */
.page-item:first-child.active .page-link,
.page-item:last-child.active .page-link {
  background-color: transparent;
  color: var(--bg-blue);
  border: none;
}

.tab-panel {

  .nav-pills .nav-link.active,
  .nav-pills .show>.nav-link {
    background-color: var(--bg-blue-dark);
    color: #ffffff;
  }

  .nav,
  .tab-content {
    max-height: 80dvh;
    overflow: auto;
    height: 100%;
  }

  .nav-pills .nav-link {
    border: 1px solid var(--bg-blue-dark);
    color: var(--text-dark);
  }

  .tab-content {
    border: 1px solid var(--bg-blue-dark);
    
    .desc p{
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  }

  a:hover {
    color: var(--bg-blue-light);
  }
}


.cta-wrapper {
  background: var(--bg-blue-dark);
  color: #fff;
}

.card-block {
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  flex-direction: column;
  padding: 20px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
  box-shadow: 0 4px 10px #00000026;
  height: 100%;

  .card-image-block {
    justify-content: space-between;
    margin-bottom: 22px;
    display: flex;
  }

  .card-icon {
    /* background-color: #4fd1c5; */
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    padding: 8px;
    display: flex
  }

  .next-arrow {
    color: #acacac;
    justify-content: flex-end;
    width: 24px;
    height: 24px;
    display: flex
  }

  .heading-block {
    justify-content: space-between;
    text-decoration: none;
    display: flex;
  }

  .card-heading {
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
  }


  .card-para {
    color: #4d4d4d;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    overflow: auto;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

.feature-card {
  background-color: var(--accent);
  flex-direction: column;
  padding: 20px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  height: 100%;

  .card-image-block {
    justify-content: space-between;
    margin-bottom: 22px;
    display: flex;
  }

  .card-icon {
    /* background-color: #4fd1c5; */
    border-radius: 8px;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    padding: 8px;
    display: flex;
    border: 1px solid;
  }

  .heading-block {
    justify-content: space-between;
    text-decoration: none;
    display: flex;
  }

  .card-heading {
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
  }

  .card-para {
    color: #4d4d4d;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    overflow: auto;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}



.card-block:hover {
  .card-heading {
    text-decoration: underline !important;
    color: var(--text-blue) !important;
  }

  .next-arrow {
    color: var(--text-blue) !important;
    ;
  }
}

.icon-bg-blue {
  background-color: #e0f3ff;
}

.icon-bg-yellow {
  background-color: #fff7d1;
}

.icon-bg-green {
  background-color: #d5fbe5;
}

.icon-bg-pink {
  background-color: #ffe2ea;
}

.icon-bg-purple {
  background-color: #f1e4ff;
}

.icon-bg-orange {
  background-color: #ffe6cc;
}

.icon-bg-light-green {
  background-color: #09abab;
}

/* border color */
.icon-border-blue {
  border-color: #8bcffa !important;
}

.icon-border-yellow {
  border-color: #fae26c !important;
}

.icon-border-green {
  border-color: #84f8b5 !important;
}

.icon-border-pink {
  border-color: #f794b0 !important;
}

.icon-border-purple {
  border-color: #c38ffa !important;
}

.icon-border-orange {
  border-color: #fac58d !important;
}

.icon-border-light-green {
  border-color: #059494 !important;
}





.tabs-wrapper {
  .nav {
    position: sticky;
    top: 15%;
  }

  .nav-pills .nav-link {
    background: transparent;
    border: 1px solid var(--bg-blue-dark);
    color: var(--text-dark);
    font-weight: 700;
    text-align: center;
    border-radius: 2px;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out;
    width: 100%;
  }


  .nav-pills .nav-link.active {
    background-color: var(--bg-blue-dark);
    color: #fff;
    border-color: var(--bg-blue-dark);
  }

  /* Tab pane */
  .tab-pane ul {
    list-style: none;
    padding-left: 0;
  }

  .tab-pane li h6 {
    font-weight: 700;
    margin-bottom: 6px;
    color: #333;
  }

  .tab-pane li p {
    margin-bottom: 0;
    color: #555;
  }

  /* Accordion (FAQs) */
  .accordion-button {
    font-weight: 600;
    font-size: 1rem;
    background-color: #fff;
    border: none;
    border-bottom: 1px solid var(--text-dark);
    box-shadow: none;
    padding: 15px 20px;
    color: var(--text-dark);
  }

  /* Remove default Bootstrap caret */
  .accordion-button::after {
    display: none;
  }

  /* Initial state */
  .accordion-button .toggle-icon {
    transition: transform 0.3s ease-in-out;
  }

  /* Rotate when open */
  .accordion-button:not(.collapsed) .toggle-icon {
    transform: rotate(180deg);
  }


  .accordion-body {
    background: var(--accent);
    padding: 15px 20px;
    color: #444;
    border-top: none;
  }

  /* Optional: Remove accordion item border radius */
  .accordion-item {
    border: none;
  }

  /* Responsive adjustments */

}

@media (max-width: 767px) {
  .tabs-wrapper {
    .nav-pills {
      flex-direction: row !important;
      justify-content: space-between;
    }

    .nav-pills .nav-link {
      flex: 1 1 auto;
      margin-right: 8px;
      font-size: 14px;
    }

    .nav-pills .nav-link:last-child {
      margin-right: 0;
    }

    .accordion-button {
      font-size: 0.95rem;
      padding: 12px 16px;
    }

    .accordion-body {
      padding: 12px 16px;
    }
  }
}



.nav-tabs {
  position: sticky;
  top: 14%;
  z-index: 9;
  border: none;

  .nav-item {
    flex-basis: 33%;
  }

  .nav-link {
    margin: 0 auto;
    width: 100%;
    border: none;
    background: var(--bg-grey);
    border-radius: 0;
    color: var(--text-dark);
    font-weight: 700;
    padding-top: 1rem;
    padding-bottom: 1rem;

  }

  .nav-link.active {
    background: var(--bg-blue-dark);
    color: #fff;
  }
}


.blog-page-header {

  img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
  }

  .category {
    color: var(--text-blue);
    font-weight: 600;
  }

  .date {
    color: var(--text-light);
    font-size: 14px;
    margin-left: 0.5rem;
  }

  .social-icons {
    display: flex;
    gap: 15px;
  }


}

.social-icons .icon {
  width: 40px;
  height: 40px;
  background-color: var(--accent);
  color: #1b3f86;
  /* Invensis blue tone or adjust */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}

.social-icons .icon:hover {
  transform: scale(1.1);
}

.blog-content {

  .sidebar {
    position: sticky;
    top: 15%;
    max-width: 300px;
    flex-shrink: 0;

    h3 {
      color: var(--text-dark);
    }


    .info-boxes {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .info-box {
      border-radius: 6px;
      padding: 1rem;
      text-align: center;
      color: white !important;
      margin-top: 1rem;
    }

    .box-blue-light {
      background-color: var(--bg-blue-light);
    }

    .box-blue-dark {
      background-color: var(--bg-blue);
    }

    .info-box h4 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 15px;
      line-height: 1.4;
    }
  }

  .description {

    p {
      color: #373a3e;
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 16px;
    }

    strong {
      color: var(--text-dark);
    }

    ul {
      padding-left: 1rem;

      li {
        color: #373a3e;
      }
    }

    h2 {
      color: #1D428A;
      font-size: 30px;
      font-style: normal;
      font-weight: 700;
      line-height: 40px;
    }

    h3 {
      color: #1D428A;
      font-size: 24px;
      font-style: normal;
      font-weight: 700;
      line-height: 30px;
    }

    a {
      color: var(--text-blue);
      font-size: 16px;
      line-height: 1.6;
      text-decoration: underline;
    }

    img {
      width: 100%;
      height: auto;
    }

  }
}

.quote-form {
  position: sticky;
  top: 15%;
  background-color: var(--accent);
  padding: 30px 20px;
  border-radius: 12px;
  max-width: 400px;
  margin: auto;
  font-family: 'Segoe UI', sans-serif;
}

.quote-form h3 {
  text-align: center;
  font-weight: 600;
  margin-bottom: 20px;
}

.quote-form .form-group {
  margin-bottom: 12px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid #bad1ef;
  font-size: 14px;

  &:focus {
    border-color: var(--bg-blue-light);
    outline: none;
  }
}

.quote-form textarea {
  resize: vertical;
  min-height: 80px;
}


.quote-form .form-row {
  display: flex;
  gap: 10px;
}

.quote-form .form-row .form-group {
  flex: 1;
}


.process-section {
  max-width: 800px;
  padding: 40px 0;

  h2 {
    font-size: 28px;
    font-weight: 700;
    color: #002147;
    margin-bottom: 10px;
  }

  p.subtitle {
    margin-bottom: 30px;
    font-size: 15px;
    color: #555;
  }

  .process-step {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-bottom: 60px;
  }

  .step-number {
    max-width: 60px;
    min-width: 60px;
    height: 60px;
    background-color: var(--bg-blue-light);
    color: white;
    font-weight: 400;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    position: relative;
    z-index: 1;
    font-size: 24px;
  }

  .process-step:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 35px;
    left: 30px;
    width: 2px;
    height: 100%;
    background-color: var(--bg-grey);
    z-index: 0;
  }

  .step-content h5 {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
  }

  .step-content p {
    margin: 0;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
  }
}

.related-services-section .heading {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 16px;
}

.related-box {
    background-color: #fff;
    border: 1px solid var(--bg-blue);
    border-radius: 8px;
    padding: 2rem;
}

.related-item {
    min-width: 200px;
    display: flex;
    align-items: center;
    font-size: 18px;

    &:hover {
        color: var(--text-blue);
    }
}
