/* ===============================
   Base Reset & Typography
   =============================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

a {
  color: inherit !important;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

p {
  font-weight: 300;
}

img,
video {
  height: auto;
  max-width: 100%;
}

:root {
  /* Primary Colors */
  --primary-color: #03363c;
  --secondary-color: #58cc75;
  --accent-green: #9ef58d;
  --muted-teal: #67868c;
  --light-green-bg: rgba(158, 245, 141, 0.1);

  /* Neutral Colors */
  --black: #000000;
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;

  /* Accent Colors */
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;

  /* Typography */
  --font-family: "Inter", sans-serif;
  --fs-16: 16px;
  --fs-15: 15px;
  --line-height-base: 1.5;

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 48px;

  /* Border Radius */
  --radius-sm: 5px;
  --radius-md: 10px;
  --radius-lg: 25px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Remove default dropdown arrow (Bootstrap override) */
.dropdown-toggle::after {
  display: none;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ===============================
   Buttons
   =============================== */
.btn {
  font-size: 16px;
  font-weight: 400;
  border-radius: var(--radius-lg);
  padding: 0.6rem 1.2rem;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color) !important;
  color: var(--accent-green) !important;
  border: none;
}

.btn-dark {
  background-color: var(--black) !important;
  color: var(--white) !important;
  border: none;
}

.btn-success {
  background-color: var(--accent-green) !important;
  color: var(--primary-color) !important;
  border: none;
}

.btn:hover,
.btn:focus {
  opacity: 0.75;
}

/* ===============================
   Utility Classes
   =============================== */
.help-block {
  font-size: 12px;
}

.iti__selected-flag {
  max-height: 45px;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}

.iti--separate-dial-code {
  width: 100%;
}

.hide-scrollbar {
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.muted-teal__text {
  color: var(--muted-teal) !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mtb-80 {
  margin: 80px 0 !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.ptb-70 {
  padding: 70px 0 !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.ptb-50 {
  padding: 50px 0 !important;
}

.navbar.menu-open {
  border-bottom: unset;
}

.page-title__xl {
  font-size: 70px;
  font-weight: bold;
  line-height: 85px;
  color: var(--primary-color);
}

.page-title__md {
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  color: var(--primary-color);
}

.page-title {
  font-size: 52px;
  font-weight: 700;
  line-height: 62px;
  color: var(--primary-color);
}

.highlight-text {
  color: var(--secondary-color);
}

.sm-highlighted__title {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
}

.highlight-border {
  height: 2px;
  width: 100%;
  max-width: 100%;
  margin: 50px auto;
  background: linear-gradient(to right,
      rgba(46, 204, 113, 0) 0%,
      var(--primary-color) 50%,
      rgba(46, 204, 113, 0) 100%);
  border-radius: 4px;
}

.highlight-btm__border {
  position: relative;
  display: inline-block;
}

.highlight-btm__border::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 100%;
  max-width: 200px;
  height: 2px;
  background: linear-gradient(to right,
      rgba(46, 204, 113, 0) 0%,
      var(--primary-color) 50%,
      rgba(46, 204, 113, 0) 100%);
  border-radius: 4px;
}

/* ===============================
   Header & Navbar
   =============================== */
.navbar {
  padding: 0.9rem 0;
  box-shadow: var(--shadow-sm);
}

.sticy-nav {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.90);
  /* backdrop-filter: blur(2px); */
  /* -webkit-backdrop-filter: blur(10px); */
  transition: transform 0.3s ease-in-out;
}

.sticy-nav.hide {
  transform: translateY(-100%);
}

.navbar-brand img {
  max-height: 64px;
}

.navbar-nav .nav-link {
  padding-left: 20px !important;
  padding-right: 20px !important;
  font-weight: 400;
  color: var(--primary-color) !important;
  position: relative;
  padding-bottom: 0.5rem;
}

.navbar-nav .nav-item.active .nav-link::after,
.navbar-nav .nav-item.show .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: black;
}

.dropdown-toggle-icon {
  transition: transform 0.3s ease;
}

.dropdown .dropdown-menu.show {
  border: 1px solid var(--primary-color);
  border-radius: var(--radius-md);
  width: max-content;
  margin-left: 22px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.dropdown .dropdown-menu.show li {
  padding: 0.5rem 1rem;
}

.dropdown-item:focus,
.dropdown-item:hover {
  background-color: unset;
  text-decoration: none;
}

.dropdown-menu .dropdown-item {
  padding: 0.75rem 1rem;
}

.dropdown-menu .dropdown-item:hover {
  text-decoration: underline;
}

.dropdown .show .dropdown-toggle-icon {
  transform: rotate(180deg);
}

.navbar-toggler i {
  font-size: 35px;
}

/* ===============================
   Footer
   =============================== */
.footer {
  background-color: var(--white);
  border-top: 1px solid #ddd;
}

.footer-align-right {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-align-right .col-6,
.footer-align-right .col-lg-6,
.footer-align-right .col-lg-3 {
  text-align: left !important;
}

.footer-logo img {
  margin-bottom: 2rem;
}

.footer h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
}

.footer ul li {
  color: var(--primary-color);
  font-size: 15px;
  padding: 0.3rem 0;
}

.footer-meta {
  gap: 1rem;
  font-size: 13px;
  align-items: center;
}

.footer-meta a {
  color: var(--primary-color) !important;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

/* ===============================
   Swipper Slider Section
   =============================== */

.custom-nav-wrapper {
  display: flex;
  justify-content: end;
  gap: 20px;
}

.custom-nav {
  width: 38px;
  height: 38px;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: var(--radius-full);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-nav:hover,
.custom-nav.active-arrow {
  background-color: var(--primary-color);
  color: var(--white);
}

.custom-nav i {
  pointer-events: none;
}

.swiper-button-prev,
.swiper-button-next {
  display: none !important;
}

/* Custom Pagination Dots */
.custom-pagination {
  text-align: center;
  margin-top: 30px;
}

.custom-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--gray-400);
  opacity: 1;
  border-radius: var(--radius-full);
  margin: 0 6px;
  transition: background-color 0.3s;
}

.custom-pagination .swiper-pagination-bullet-active {
  background: var(--primary-color);
}

/* ===============================
   Accordion Section
   =============================== */

.accordion-button::after {
  font-weight: 700;
}

.accordion-button,
.accordion-button:hover {
  background-color: var(--white);
}

.accordion .accordion-body a {
  color: var(--secondary-color) !important;
  text-decoration: underline;
}

.accordion-button {
  transition: background-color 0.3s;
  padding: 20px;
  line-height: 24px;
  font-weight: 400;
}

.accordion-button:not(.collapsed) {
  background-color: var(--light-green-bg);
  color: var(--black);
  font-weight: 600;
  font-size: 17px;
  box-shadow: none;
  line-height: 24px;
  padding-bottom: 0;
}

.accordion-body {
  background-color: var(--light-green-bg);
  font-size: 15px;
  padding: 10px 20px 20px;
}

.accordion-button:focus {
  outline: 0;
  box-shadow: none;
}

/* ===============================
   Hero & Banner Section
   =============================== */

.banner-sec {
  background-image: url(../images/hero-bg.webp);
  background-size: cover;
  background-position: center;
  display: block;
  position: relative;
  height: 100%;
}

.banner-sec .banner-content,
.banner-sec .banner-image {
  padding: 150px 0;
}

.banner-sec .main-heading,
.banner-sec .secondary-heading {
  font-size: 80px;
  font-weight: 700;
  padding-top: 40px;
  color: var(--primary-color);
}

.banner-sec .secondary-heading {
  font-size: 65px;
}

.banner-sec .short-para {
  font-weight: 400;
  font-size: 18px;
  color: var(--black);
  padding: 30px 0;
}

.btn-lg {
  padding: 0.8rem 2rem;
  border-radius: 50px;
}

/* ===============================
   About Section
   =============================== */

.about-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 600px;
  margin: 0 auto;
}

.about-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.about-number {
  background-color: var(--secondary-color);
  color: var(--white);
  opacity: 0.9;
  border: 5px solid #cef9c5;
  font-weight: bold;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.about-text h5 {
  margin: 0;
  font-size: 18px;
  padding-top: 4px;
  font-weight: 700;
  color: var(--black);
}

.about-text p {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.6;
}

/* ===============================
   Features Section
   =============================== */

.features-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.features-list {
  flex: 1;
  min-width: 300px;
}

.feature-item {
  margin-bottom: 20px;
  padding: 0px 20px;
  border-left: 2px solid var(--muted-teal);
  transition: border-color 0.3s ease;
}

.feature-item.active {
  border-left: 3px solid var(--secondary-color);
  background-color: var(--light-green-bg);
  padding: 10px 20px;
  box-shadow: var(--shadow-sm);
}

.feature-title {
  font-size: 18px;
  padding: 5px 0;
  cursor: pointer;
  color: var(--muted-teal);
  transition: color 0.3s ease;
}

.feature-title.active {
  color: var(--primary-color);
  font-weight: 700;
}

.feature-content {
  display: none;
  animation: fadeIn 0.4s ease;
  color: var(--primary-color);
}

.feature-content p {
  margin-bottom: 0rem;
}

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

.features-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-image img {
  max-width: 100%;
  height: auto;
  animation: fadeIn 0.4s ease;
}

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

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

.feature-mobile-img {
  display: none;
  margin: 20px auto 10px auto;
  z-index: 0;
  pointer-events: none;
}

/* ===============================
   Truested Clients Section
   =============================== */
.trusted-clients__sec {
  background-color: var(--white);
}

.trusted-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.trusted-gallery img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease, border-color 0.3s ease;
  padding: 10px;
  mix-blend-mode: darken;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid transparent;
  border-top: 1px solid transparent;
}

.trusted-gallery img:hover {
  filter: grayscale(0%);
}

.trusted-gallery img:nth-child(4n) {
  border-right: 1px solid transparent;
}

.trusted-gallery img:nth-last-child(-n + 2) {
  border-bottom: 1px solid transparent;
}

.trusted-gallery img:nth-child(5) {
  grid-column: 2 / 3;
  border-left: 1px solid #ccc;
}

.trusted-gallery img:hover:nth-child(5) {
  border-left: 1px solid var(--accent-green);
}

.trusted-gallery img:nth-child(6) {
  grid-column: 3 / 4;
}

.trusted-gallery img:nth-child(n + 5) {
  border-top: 1px solid transparent;
}

.trusted-gallery img:hover:not(:nth-child(4n)) {
  border-right: 1px solid var(--accent-green);
}

.trusted-gallery img:hover:not(:nth-last-child(-n + 2)) {
  border-bottom: 1px solid var(--accent-green);
}

.trusted-gallery img:hover:not(:nth-child(4n - 3)) {
  border-left: 1px solid var(--accent-green);
}

.trusted-gallery img:hover:nth-child(n + 5) {
  border-top: 1px solid var(--accent-green);
}

/* ===============================
   Pricing Section
   =============================== */

.pricing-sec .highlight-para {
  font-size: 18px;
  line-height: 24px;
}

.pricing-sec .pricing-cards__sec {
  margin-top: 50px;
}

.pricing-sec .pricing-headings {
  text-align: center;
}

.btn-toggles {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
}

.toggle-label {
  font-size: 16px;
  color: var(--black);
}

.toggle-icon {
  font-size: 35px;
  cursor: pointer;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.pricing-card {
  border: 1px solid #f2f2f2;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card .pricing-header {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 13px 10px;
  text-align: center;
}

.pricing-card .pricing-body {
  padding: 25px 20px;
  flex-grow: 1;

}

.pricing-card .most-popular {
  background-color: var(--secondary-color);
  color: var(--muted-teal);
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 300;
  border-radius: 10px;
}

.pricing-card .pricing-body h5 {
  font-size: 28px;
  font-weight: 600;
}

.pricing-card .pricing-body .mp-highlight {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pricing-card .pricing-body h5 small {
  font-size: 15px;
  font-weight: 400;
  color: var(--primary-color);
}

.price-part small {
  font-size: 12px;
  color: var(--gray-600);
}

.pricing-body .price-part .price {
  display: flex;
  align-items: center;
  gap: 5px;
}

.pricing-body .price-part .price h6 {
  font-size: 32px;
  font-weight: 400;
  margin: 0;
}

.pricing-body .price-part .price-meta {
  display: flex;
  gap: 5px;
  color: var(--secondary-color);
  font-weight: 500;
  justify-content: center;
  font-size: 15px;
  line-height: 1.2;
}

.pricing-card .highlighted-text {
  background-color: var(--muted-teal);
  padding: 10px 15px;
  margin-top: 25px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  display: inline-block;
}

.pricing-card .features-part h6 {
  font-size: 17px;
  line-height: 25px;
  font-weight: 400;
  margin-top: 20px;
}

.pricing-card .features-part .key-features__title {
  font-weight: 600;
}

.pricing-card .features-part ul {
  list-style-type: none;
  padding-left: 1rem;
}

.pricing-card .features-part ul li {
  padding-top: 5px;
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-700);
  display: flex;
  gap: 5px;
}

.pricing-card .features-part ul li i {
  color: var(--secondary-color);
  font-size: 18px;
}

.pricing-card .features-part .hidden-features {
  display: none;
}

.pricing-card .pricing-body .view-more__link {
  color: var(--secondary-color);
  font-size: 14px;
  text-align: center;
}

#toggleArrow {
  transition: transform 0.4s ease;
}

#toggleArrow.rotate:before {
  transform: rotate(180deg);
}

.pricing-card .card-footer {
  text-align: center;
  padding: 0 30px 25px 30px;
}

/* ===============================
   Testimonial Section
   =============================== */

.testimonial-slide {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  text-align: left;
  position: relative;
  height: initial !important;
}

.testimonial-slide p {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 25px;
  display: flex;
  gap: 8px;
}

.testimonial-slide i.bi-quote {
  font-size: 45px;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: -25px;
}

.testimonial-slide h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.testimonial-slide span {
  font-size: 14px;
}

.testimonial-slide .testimonial-footer {
  margin-left: 55px;
}

/* ===============================
   What makes differente Section
   =============================== */
.points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px 30px;
  margin: 30px auto;
}


.points-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.points-item h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0px;
}

/* ===============================
   Contact Form Modal
   =============================== */

/* Modal Overlay */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

/* Show modal via :target */
#contactModal:target {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Modal Content */
.modal-content {
  background-color: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  max-width: 500px;
  max-height: 500px;
  overflow-y: scroll;
  position: relative;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-family);
}

/* Modal Header */

/* Close Button */
.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: transparent;
  font-size: 24px;
  color: var(--gray-700);
  cursor: pointer;
  z-index: 1001;
}

.modal-close i:hover {
  color: var(--danger);
}

/* Form */
.contact-form {
  margin-top: var(--spacing-md);
}

.contact-form .form-group {
  margin-bottom: var(--spacing-md);
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 20px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  border: 1px solid var(--secondary-color);
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  font-size: 14px;
  font-weight: 300;
}

/* ===============================
   Multi Point Section
   =============================== */
.multi-point__sec {
  background-color: var(--light-green-bg);
}

.multi-point__sec .multi-point__card {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.multi-point__sec .multi-point__card img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(255, 255, 255, 0.1));
  display: flex;
  align-items: flex-end;
  transition: background 0.3s ease;
}

.multi-point__card .text-content {
  width: 100%;
  color: white;
  padding: 40px 20px;
  box-sizing: border-box;
}

.multi-point__card .text-overlay h3 {
  font-size: 26px;
  margin: 0 0 5px;
  font-weight: 700;
}

.multi-point__card .text-overlay p {
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}

.multi-point__card:hover .text-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(255, 255, 255, 0.2));
}

/* ===============================
   Industries Section
   =============================== */

.industries-sec {
  background-color: var(--primary-color);
  color: var(--white);
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.industries-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/shades/shade-1.svg');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: -1;
}

.industries-wrapper {
  position: relative;
  z-index: 1;
  margin-left: 100px;
}

.industries-card {
  background-color: #1a4950;
  border-radius: var(--radius-md);
  padding: var(--spacing-xl);
  position: relative;
  height: 100%;
  z-index: 1;
}

.industries-card h3 {
  padding-top: 15px;
  font-size: 20px;
  line-height: 27px;
  font-weight: 500;
  margin-bottom: 10px;
}

.industries-card p {
  font-size: 15px;
  margin: 0;
}

/* ===============================
   Ads Section
   =============================== */
.ads-sec .ads-content {
  background: linear-gradient(to bottom, #03363c 0%, #011f22 100%);
  border-radius: var(--radius-lg);
  padding: 50px;
  color: var(--white);
  text-align: center;
}

/* ===============================
   Feature Tabs Section
   =============================== */
#stickyTabs {
  position: sticky;
  /* top: 90px; */
  background: var(--white);
  z-index: 10;
}

.underline-tabs-wrapper {
  overflow-x: auto;
  width: 100%;
  padding: 15px 15px 0 15px;

}

.underline-tabs {
  display: flex;
  gap: 40px;
  border-bottom: 1px solid var(--secondary-color);
  padding-bottom: 8px;
  justify-content: center;
  width: max-content;
  margin: 0 auto;
}

.underline-tabs .tab {
  position: relative;
  font-weight: 400;
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.3s ease, font-weight 0.3s ease;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  white-space: nowrap;
}

.underline-tabs .tab::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.underline-tabs .tab:focus {
  border: none;
}

.underline-tabs .tab:hover::after,
.underline-tabs .tab.active::after {
  width: 100%;
}

.underline-tabs .tab.active {
  color: var(--primary-color) !important;
  font-weight: 700;
}

.feature-detail {
  padding: 70px 0 0 0;
}

.feature-detail h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
}

.feature-detail p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted-teal);
  margin-top: 10px;
}

.feature-detail .sub-features .about-list {
  margin: 0;
  gap: 30px;
  cursor: pointer;
}

.dynamic-feature-image {
  margin: 10px auto 0 auto;
}

/* Responsive helpers */
@media (max-width: 1399px) {
  .nav-link {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

@media (max-width: 992px) {
  .feature-detail .sub-features .about-list {
    max-width: 100%;
  }

  .feature-detail .sub-features .about-list .about-item {
    flex-direction: column;
  }

  .industries-wrapper {
    margin-left: -12px;
  }

  .banner-sec .banner-image {
    padding: 0px 0;
  }

  .mt-80 {
    margin-top: 60px !important;
  }

  .mb-80 {
    margin-bottom: 60px !important;
  }

  .mtb-80 {
    margin: 60px 0 !important;
  }

  .pt-70 {
    padding-top: 50px !important;
  }

  .pb-70 {
    padding-bottom: 50px !important;
  }

  .ptb-70 {
    padding: 50px 0 !important;
  }

  .pt-50 {
    padding-top: 40px !important;
  }

  .pb-50 {
    padding-bottom: 40px !important;
  }

  .ptb-50 {
    padding: 40px 0 !important;
  }

  .banner-sec .banner-content {
    padding: 100px 0;
    padding-bottom: 50px;
  }

  .banner-sec .main-heading {
    font-size: 65px;
  }

  .banner-sec .secondary-heading {
    font-size: 55px;
  }

  .dropdown-menu .dropdown-item {
    padding: 0.75rem 3rem;
  }

  .navbar-nav .nav-link {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .navbar-collapse {
    margin-top: 7px;
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    padding: 1rem;
  }

  .dropdown .dropdown-menu.show {
    margin-top: 0px;
  }

  .page-title__xl {
    font-size: 70px;
    line-height: 80px;
  }
}

@media (max-width: 768px) {
  .mt-80 {
    margin-top: 40px !important;
  }

  .mb-80 {
    margin-bottom: 40px !important;
  }

  .mtb-80 {
    margin: 40px 0 !important;
  }

  .pt-70 {
    padding-top: 35px !important;
  }

  .pb-70 {
    padding-bottom: 35px !important;
  }

  .ptb-70 {
    padding: 35px 0 !important;
  }

  .pt-50 {
    padding-top: 30px !important;
  }

  .pb-50 {
    padding-bottom: 30px !important;
  }

  .ptb-50 {
    padding: 30px 0 !important;
  }

  .features-wrapper {
    flex-direction: column;
  }

  .feature-item {
    position: relative;
  }

  .features-image {
    display: none;
  }

  .feature-mobile-img {
    display: block;
  }

  .features-list {
    width: 100%;
  }

  .page-title__xl {
    font-size: 50px;
    line-height: 60px;
  }

  .page-title__md {
    font-size: 40px;
    line-height: 46px;
  }

  .page-title {
    font-size: 32px;
    line-height: 38px;
  }

  .trusted-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .trusted-gallery img:nth-child(4n) {
    border-right: 1px solid #ccc;
  }

  .trusted-gallery img:nth-child(2n) {
    border-right: 1px solid transparent;
  }

  .trusted-gallery img:nth-last-child(-n + 2) {
    border-bottom: 1px solid #ccc;
  }

  .trusted-gallery img:nth-last-child(-n + 2) {
    border-bottom: 1px solid transparent;
  }

  .trusted-gallery img:nth-child(5),
  .trusted-gallery img:nth-child(6) {
    grid-column: auto;
    border-left: none;
  }

  .banner-sec .main-heading {
    font-size: 55px;
  }

  .banner-sec .secondary-heading {
    font-size: 45px;
  }
}

@media (max-width: 545px) {
  .feature-detail {
    padding-bottom: 0px;
  }

  .feature-detail h3 {
    font-size: 24px;
    line-height: 30px;
  }

  .feature-detail p {
    font-size: 15px;
  }

  .about-list {
    gap: 20px;
  }

  .banner-sec .banner-content {
    padding: 20px 0;
    padding-bottom: 40px;
  }

  .testimonial-slide {
    padding: 20px;
  }

  .testimonial-slide p {
    font-size: 17px;
    gap: 5px;
    line-height: 1.6;
  }

  .testimonial-slide i.bi-quote {
    font-size: 40px;
    margin-top: -18px;
  }

  .mt-80 {
    margin-top: 30px !important;
  }

  .mb-80 {
    margin-bottom: 30px !important;
  }

  .mtb-80 {
    margin: 30px 0 !important;
  }

  .pt-70 {
    padding-top: 25px !important;
  }

  .pb-70 {
    padding-bottom: 25px !important;
  }

  .ptb-70 {
    padding: 25px 0 !important;
  }

  .pt-50 {
    padding-top: 20px !important;
  }

  .pb-50 {
    padding-bottom: 20px !important;
  }

  .ptb-50 {
    padding: 20px 0 !important;
  }

  .page-title__xl {
    font-size: 35px;
    line-height: 42px;
  }

  .page-title__md {
    font-size: 30px;
    line-height: 36px;
  }

  .page-title {
    font-size: 26px;
    line-height: 32px;
  }

  .trusted-gallery-track {
    overflow: hidden;
    position: relative;
    width: 100%;
  }

  .trusted-gallery {
    display: flex;
    width: max-content;
    animation: scrollLeft 30s linear infinite;
  }

  @keyframes scrollLeft {
    0% {
      transform: translateX(0%);
    }

    100% {
      transform: translateX(-50%);
    }
  }

  .trusted-gallery img {
    border: none !important;
  }

  .trusted-gallery img:hover {
    border: none !important;
  }

  .banner-sec .main-heading {
    font-size: 40px;
    padding-top: 20px;
  }

  .banner-sec .secondary-heading {
    font-size: 40px;
    padding-top: 20px;

  }

  .banner-sec .short-para {
    font-weight: 300;
    font-size: 16px;
    padding: 15px 0;
  }
}

@media (max-width: 379px) {
  .pricing-sec .highlight-para {
    font-size: 15px;
    line-height: 22px;
  }

  .btn-lg {
    padding: 0.6rem 1.7rem;
  }

  .pricing-card .pricing-body {
    padding: 20px 15px;
  }

  .pricing-card .card-footer {
    padding: 0 15px 20px 15px;
  }
}