/* === Base Navbar (Transparent) === */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  background: transparent;
  padding: 15px 0;
  transition: all 0.3s ease;
}

/* === When Scrolled (Sticky Active) === */
.site-header.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  /* width: 100%; */
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  margin-left: 60px;
  width: 1400px;
}

/* === LOGO BEHAVIOR (FIXED VERSION) === */
.site-logo img {
  max-height: 48px;
  width: auto;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Default: Light logo visible */
.site-logo .main-logo {
  opacity: 1 !important;
  visibility: visible !important;
  display: inline-block !important;
}

/* Default: Dark logo hidden */
.site-logo .sticky-logo {
  opacity: 0 !important;
  visibility: hidden !important;
  display: none !important;
}

/* On scroll: swap logos */
.site-header.scrolled .main-logo {
  opacity: 0 !important;
  visibility: hidden !important;
  display: none !important;
}

.site-header.scrolled .sticky-logo {
  opacity: 1 !important;
  visibility: visible !important;
  display: inline-block !important;
}

/* === Nav Link Color Behavior === */
.navbar-nav .nav-link {
  /* color: #fff !important; */
  transition: color 0.3s ease;
}

.site-header.scrolled .nav-link {
  color: #111 !important;
}

/* === Ensure Other Theme Styles Don’t Override === */
.navbar.dark .site-logo img,
.navbar.dark.scrolled .site-logo img {
  opacity: 1 !important;
  visibility: visible !important;
}


.tt-icon-box.style-one .icon-container svg,
.tt-icon-box.style-one .icon-container img {
  width: 65px !important;
}

.tn-screenshot-slider-wrapper {
  position: relative;
  height: 720px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tn-slider-mockup {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 408px;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 5;
  pointer-events: none;
}

.tn-slider-mockup img {
  width: 408px;
  height: 771px;
  display: block;
  padding-bottom: 129px;
}

.tn-screen-slider .swiper-slide {
  width: 360px;
  height: 590px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
  transition: transform .5s ease, opacity .5s ease, filter .5s ease;
}

.tn-screen-slider .swiper-slide img {
  margin-top: 40px;
  width: 90%;
  height: 90%;
  object-fit: cover;
  /* border-radius:35px; */
}

.tn-screen-slider .swiper-slide-prev,
.tn-screen-slider .swiper-slide-next {
  transform: scale(.9);
  opacity: .75;
  filter: blur(1px);
}

.tn-screen-slider .swiper-slide-active {
  transform: scale(1);
  opacity: 1;
  filter: none;
  z-index: 3;
}

#app-screens {
  padding-top: 100px;
}


.automation {
  width: 33% !important;
}


/* Base logo text style */
.logo-text {
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0;
  transition: color 0.3s ease, opacity 0.3s ease;
}

/* Default (transparent header) — light text */
.site-header .main-logo {
  color: #111111;
  display: inline-block;
}

.site-header .sticky-logo {
  color: #0c1117;
  display: none;
}

/* When header becomes sticky */
.site-header.scrolled .main-logo {
  display: none;
}

.site-header.scrolled .sticky-logo {
  display: inline-block;
}

/* Optional hover effect */
.logo-text:hover {
  opacity: 0.9;
}


/* ------------------------------
   NAVBAR LINK COLOR TRANSITION
--------------------------------*/

/* Default — transparent header (light text like main logo) */
.site-header .nav-link {
  color: #e0e0e0;
  font-weight: 500;
  font-size: 16px;
  margin: 0 14px;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

/* Hover effect (blue accent) */
.site-header .nav-link:hover {
  color: #00a2ff;
}

/* Sticky header — dark text like sticky logo */
.site-header.scrolled .nav-link {
  color: #0c1117;
}

/* Sticky hover */
.site-header.scrolled .nav-link:hover {
  color: #007bff;
}

/* Active link highlight */
.site-header .nav-link.active {
  color: #00a2ff;
}

/* Optional subtle opacity transition */
.site-header .nav-link {
  opacity: 0.95;
}

.site-header .nav-link:hover {
  opacity: 1;
}

/* Fix for Login + Button area */
.nav-right .nav-link {
  margin-right: 10px;
}

/* Get Started button styling stays consistent */
.nav-btn.tt__btn {
  background: linear-gradient(to right, #8859ce, #966cd4, #b192df) !important;

  color: #fff !important;
  border-radius: 50px;
  padding: 10px 25px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.nav-btn.tt__btn:hover {
  background: #0056c1;
}

footer {
  background: linear-gradient(to top, #2e2e2e, #5a5a5a, #8c8c8c, #cfcfcf, #f2f2f2) !important;
}

.site-info {
  padding: 15px 0 15px !important;
}

.footer-menu li a {
  color: #fff !important;
}

.footer-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  /* faint line */
  margin: 20px 0;
}

.recent-post li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: #fff;
}

.recent-post img {
  border-radius: 5px;
}

.tweet {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 8px;
  color: #fff;
}

.tweet i {
  margin-right: 10px;
  color: #1DA1F2;
}

.footer-social-link li {
  display: inline-block;
  margin-right: 10px;
}

.footer-social-link i {
  font-size: 16px;
  color: #fff;
}

.recent-post li {
  display: flex;
  align-items: center;
  /* vertically centers image + text */
  margin-bottom: 15px;
}

.recent-post img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 12px;
}

.recent-post .post-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* makes title + date align vertically */
}

.recent-post .post-title {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 4px;
  display: block;
}

.recent-post .post-date {
  font-size: 15px;
  opacity: 0.8;
  margin: 0;
}

.justify {
  text-align: justify !important;
}

.news {
  height: fit-content;

}

.social-title {
  color: #fff !important;
}


.myFeatureSwiper {
  height: fit-content;
}

.banner {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner_bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  /* full screen */
  width: 100%;
}

.banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 25, 35, 0.81);
  z-index: 1;
}

.banner__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 180px;
}

.banner__title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;

}

.banner__description {
  font-size: 1.1rem;
  color: #e5e5e5;
  margin-bottom: 25px;
}

.newsletter-inner input {
  max-width: 300px;
  border-radius: 30px 0 0 30px;
  border: none;
  padding: 10px 20px;
  outline: none;
}

.newsletter-inner .newsletter-submit {

  padding: 10px 25px;

}

.newsletter-inner .newsletter-submit:hover {
  background-color: #895bce;
  color: white;
}

.banner__feature {
  list-style: none;
  padding: 0;
}

.banner__feature li {
  display: inline-block;
  margin: 0 15px;
  color: #d7e7df;
  font-weight: 500;
}

.swiper-button-prev,
.swiper-button-next {
  color: #fff;
}

.swiper-pagination-bullet-active {
  background: #895bce;
}


/* ===== Section Layout ===== */
.service-slider {
  padding: 40px 0px 20px 0px;
  background: #f9fafa;
}

.serviceSwiper {
  height: fit-content;
}

.section-header {
  margin-bottom: 30px;
}

.swiper-navigation-icon {
  height: 30px !important;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}

.section-description p {
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
}

/* ===== Swiper Cards ===== */
.serviceSwiper .swiper-slide {
  display: flex;
  justify-content: center;
}

.tt-icon-box {
  background: #fff;
  height: fit-content;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  cursor: pointer;
}

.tt-icon-box:hover {
  background: #895BCE;
  /* transform: translateY(-8px); */
  color: #fff;
}

.tt-icon-box:hover h4,
.tt-icon-box:hover p {
  color: #fff;
}

.icon-container {
  margin-left: auto;
  margin-right: auto;
}

.icon-container img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.tt-icon-box:hover .icon-container img {
  transform: scale(1.15);
}

/* ===== Swiper Controls ===== */
.slider-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.swiper-button-prev.service-prev,
.swiper-button-next.service-next {
  position: relative;
  color: white;
  font-weight: bold;
  width: 40px;
  height: 40px;
  background-color: #895bce;
  border: 5px solid #895bce;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-button-prev.service-prev:hover,
.swiper-button-next.service-next:hover {
  background: #ea5459;
  color: #fff;
  border: 5px solid #ea5459;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .swiper-button-prev.service-prev,
  .swiper-button-next.service-next {
    width: 35px;
    height: 35px;
  }

  .tt-icon-box {
    padding: 25px 15px;
  }

  .section-title {
    font-size: 1.6rem;
  }
}

.blog {
  padding: 50px 0;
  background: #F0F1F5;
}

.section-header {
  margin-bottom: 30px;
}

.section-title {
  font-size: 44px;
  font-weight: 700;
  color: #222;
  justify-content: center;
}

.section-description p {
  max-width: 800px;
  margin: 0 auto 50px;
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
}

/* ===== Blog Card ===== */
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  cursor: pointer;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
  position: relative;
}

.blog-meta {
  font-size: 0.85rem;
  color: #895bce;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.blog-title a {
  color: #222;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-title a {
  color: #895bce;
}

.blog-content p {
  font-size: 0.95rem;
  color: #555;
  margin: 15px 0 20px;
  line-height: 1.6;
}

.read-more {
  color: #895bce;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #157b5e;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .blog-image img {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }

  .blog-card {
    margin-bottom: 30px;
  }

  .blog-image img {
    height: 200px;
  }
}


.contact-section {
  padding: 40px 0;
  background: #ffffff;
}

.section-header {
  margin-bottom: 30px;
}


/* Map */
.contact-map iframe {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
}

/* Info Cards */
.contact-info {
  margin-bottom: 25px;
}

.info-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(137, 91, 206, 0.8);
  /* box-shadow: 0 2px 10px rgba(137, 91, 206, 0.8); */
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 18px;
  transition: all 0.3s ease;
  /* border-left: 4px solid transparent; */
}

.info-card:hover {
  border-left: 5px solid #895bce;
  transform: translateY(-4px);
}

.info-card i {
  font-size: 1.6rem;
  color: #ea5459;
}

.info-card h5 {
  font-weight: 700;
  color: #000;
  margin-bottom: 4px;
  font-size: 1rem;
}

.info-card p {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
}

/* Form Card */
.contact-form-card {
  background: #fff;
  border-radius: 12px;
  border: 2px solid rgba(137, 91, 206, 0.8);
  /* box-shadow: 0 2px 10px rgba(137, 91, 206, 0.8); */
  padding: 25px 30px;
}

.contact-form-card h5 {
  color: #895bce;
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.contact-form-card p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

/* Form Controls */
.contact-form .form-control {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #895bce;
  box-shadow: 0 0 4px rgba(137, 91, 206, 0.3);
}

/* Send Button */
.btn-send {
  background: linear-gradient(135deg, #895bce, #ea5459);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 12px 25px;
  transition: all 0.3s ease;
}

.btn-send:hover {
  background: linear-gradient(135deg, #ea5459, #895bce);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .contact-map iframe {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-form-card {
    padding: 20px;
  }
}

.gradient-text {
  background: linear-gradient(90deg, #895bce, #c77dff, #895bce);
  background-size: 200%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: gradientMove 3s linear infinite;
}

/* Animation keyframes */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

/* back to top start*/
.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: #895bce;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  z-index: 9999;
}

.scroll-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.scroll-top:focus-visible {
  outline: 3px solid rgba(234, 84, 89, 0.4);
  outline-offset: 2px;
}

/* back to top end */


/* Service slider start */
.featureSwiper {
  height: max-content !important;
}

.swiper-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 50px;
  padding-right: 20px;
}

.swiper-button-next,
.swiper-button-prev {
  position: relative !important;
  inset: unset !important;
  background: #00966B;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: 900;
  color: white !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: white !important;
}


.feature-slider {
  padding: 60px 0;
  background: #f5faf8;
}


.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  text-align: left;
  transition: all 0.3s ease;
  height: fit-content;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
  position: relative;
}

.feature-card .icon {
  width: 50px;
  height: 50px;
  background: #895bce;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 15px;
}

.feature-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1c1c1c;
}

.feature-card p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 20px;
}

.feature-card .card-number {
  font-weight: 600;
  color: #895bce;
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.feature-card:hover {
  background: #EA5459;
  color: #fff;
}

.feature-card:hover .icon {
  background: #fff;
  color: #895bce;
}

.feature-card:hover h4,
.feature-card:hover p,
.feature-card:hover .card-number {
  color: #fff;
}

/* Swiper Controls */
.swiper-button-next,
.swiper-button-prev {
  background: #895bce;
  color: #fff !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
}

/* Service slider end */

/* About TN Start */
.tt-icon-box.style-one {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

.tt-icon-box.style-one:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.tt-icon-box.style-one {
  margin-bottom: 50px !important;
}

.corner-arrow {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(40px, -40px);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.tt-icon-box.style-one:hover .corner-arrow {
  transform: translate(0, 0);
  opacity: 1;
}

.corner-arrow img {
  width: 16px;
  height: 16px;
  transition: transform 0.4s ease;
}

.tt-icon-box.style-one:hover .corner-arrow img {
  transform: rotate(360deg);
}

.card-footer {
  display: flex;
  align-items: center;
  width: 160px;
  gap: 10px;
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.card-number {
  font-weight: 600;
  font-size: 16px;
}

.line {
  flex: 1;
  height: 2px;
  background: black;
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  transform-origin: left center;
}

.tt-icon-box.style-one:hover .card-footer {
  flex-direction: row-reverse;
}

.tt-icon-box.style-one:hover .line {
  transform-origin: right center;
  background-color: white !important;
}

.line:hover {
  color: white;
}

.tt-icon-box.style-one::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.15), transparent 70%);
  opacity: 0;
  transition: opacity 1s ease;
}

.tt-icon-box.style-one:hover::after {
  opacity: 1;

}

.swiper-button-prev .swiper-navigation-icon {
  font-weight: 900 !important;
  height: 20px !important;
}

.swiper-button-next .swiper-navigation-icon {
  font-weight: 900 !important;
  height: 20px !important;
}

@media (max-width: 768px) {
  .tt-icon-box.style-one {
    height: auto;
    padding: 30px 20px;
  }
}

/* About TN End */

/* CTA Start */
.parallax-bg {
  background-image: url('../assets/img/111.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  padding: 50px 0;
  color: #fff;
}

.parallax-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: -1;
}

.call-to-action .container {
  position: relative;
  z-index: 2;
}

/* CTA End */

/* blog sticky */
.sticky-sidebar {
  position: sticky;
  top: 100px;
  z-index: 100;
}

/* blog sticky */

/* whatsapp */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 28px;
  text-align: center;
  line-height: 60px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  color: white;
}

.whatsapp-float i {
  vertical-align: middle;
  margin-top: 9px;
  margin-left: 3px;
  font-size: 40px;

}

.whatsapp-float i:hover {
  color: white;
}

/*whatsapp */


.tt-portfolio {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.tt-portfolio__item {
  transition: 0.3s ease;
}

.tt-portfolio__item.hide {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

.product-feature {
  padding: 0px 0px 0px 0px !important;
}

.product {
  font-size: 32px !important;
}

.section-heading {
  margin-bottom: 25px !important;
}

.newsletter {
  padding: 40px 0px 0px 0px !important;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 25, 35, 0.70);
  z-index: 1;
}

.about {
  background-position: center center;
  background-image: url('../assets/logistics-means-transport-together-with-technological-futuristic-holograms.jpg');
}

.faq {
  background-position: center center;
  background-image: url('../assets/logistics-professional-overseeing-trucking-fleet.jpg');
}

.blog-banner {
  background-position: center center;
  background-image: url('../assets/erp-systems-for-fleet-management-header.jpg');
}

.contact-banner {
  background-position: center center;
  background-image: url('../assets/img/banner/1.png');
}

.sub-menu .nav-item a:hover {
  color: #8A5BCF !important;
}

.gps-features-section {
  background: #ffffff;
  padding: 40px 0;
  font-family: 'Inter', sans-serif;
  height: fit-content;
}

.feature-box {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  padding-top: 10px;
}

.icon-circle {
  width: 90px;
  height: 90px;
  border: 2px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto 10px;
  transition: all 0.3s ease;
}

.feature-box .icon-circle:hover {
  border: 4px solid #8A5BCF;
  transform: translateY(-4px);

}

.icon-circle img {
  width: 45px;
  height: auto;
}

/* container */
.custom-slider-container {
  width: 90%;
  max-width: 1000px;
  margin: 30px auto;
  position: relative;
  overflow: hidden;
  /* important */
  /* background: #f7f7f7; */
}

.custom-slider-wrapper {
  display: flex;
  /* acts like .swiper-wrapper */
  transition-property: transform;
  box-sizing: content-box;
  will-change: transform;
}

.custom-slide {
  flex-shrink: 0;
  /* acts like .swiper-slide */
  width: 100%;
  /* one slide fills container */
  box-sizing: border-box;
  display: block;
  padding: 12px;
  height: fit-content;
}

.custom-slide img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  /* background: #ddd; */
}

/* nav / pagination simple styling */
.custom-next-btn,
.custom-prev-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  background: rgba(0, 0, 0, 0.15);
  color: #fff;
  padding: 8px 10px;
  border-radius: 4px;
  cursor: pointer;
  user-select: none;
  transition: all 0.3 ease;
}

.custom-next-btn:hover {
  background-color: rgba(0, 0, 0, 0.45);
}

.custom-prev-btn:hover {
  background: rgba(0, 0, 0, 0.45);
}

.custom-next-btn {
  right: 10px;
}

.custom-prev-btn {
  left: 10px;
}

.custom-pagination {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  z-index: 50;
}

.custom-bullet {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #aaa;
  margin: 0 4px;
  opacity: 0.9;
  cursor: pointer;
}

.custom-bullet-active {
  background: #111;
}

.feature-tab-nav__title {
  color: black;
}

.faq-section {
  background: #f7f8fa;
  padding: 80px 0;
  font-family: 'Inter', sans-serif;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h2 {
  font-weight: 700;
  color: #2c2e33;
  font-size: 2rem;
  margin-bottom: 10px;
}

.faq-header p {
  color: #6b7280;
  font-size: 1rem;
}

.faq-accordion {
  /* max-width: 900px; */
  margin: 0 auto;

}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #895bce;
}

.faq-item:hover {
  transform: translateY(-2px);
  border-left: 5px solid #895bce;
  /* box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08); */
}

.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  outline: none;
  text-align: left;
  padding: 20px 25px;
  font-weight: 600;
  font-size: 1.05rem;
  color: #1f2937;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  font-size: 20px;
  color: #6b21a8;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  background: #f9fafb;
  padding: 0 25px 20px;
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-answer ul {
  padding-left: 20px;
  margin: 0;
}

.faq-answer li {
  list-style: disc;
  margin-bottom: 8px;
}

.faq-item.active .faq-answer {
  display: block;
}

@media (max-width: 768px) {
  .faq-header h2 {
    font-size: 1.6rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 18px;
  }

  .faq-answer {
    font-size: 0.9rem;
  }
}