/* ========================
Global Color Variables
======================== */
:root {
	--orange: #EA6E35;
	--black: #1E1E24;
	--dark-grey: #30282B;
	--white: #ffffff;
	--primary-orange: #ea6e35;
	--light-orange: #FFF5F3;
	--dark-text: #2D3748;
	--light-text: #718096;
	--card-bg: #FFFFFF;
	--light-bg: #F8F9FA;
	--border-color: #E2E8F0;
	--description-text: #D1D1D1;
	--medium-text: #4A5568;

	--card-alt-bg: #F0F4F8;
}



/* ========================
Base Styles
======================== */
body {
	font-family: "Manrope", sans-serif;
	background-color: var(--white);
	color: var(--black);
	line-height: 1.6;
	font-size: 16px;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
	font-family: "Manrope", sans-serif;
	color: var(--black);
	font-weight: 700;
	margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

/* Paragraphs */
p {
	font-weight: 400;
	color: var(--dark-grey);
	margin-bottom: 1rem;
}

/* Links */
a {
	color: var(--orange);
	text-decoration: none;
	transition: 1s;
	font-weight: 500;
}
a:hover {
	color: var(--black);
	text-decoration: none;
}

.text-orange {
	color: var(--orange);
}

/* Buttons */
.btn-primary {
	background-color: var(--orange);
	border-color: var(--orange);
	color: var(--white);
	font-weight: 600;
}
.btn-primary:hover {
	background-color: var(--black);
	border-color: var(--black);
}

.btn-outline-secondary {
	border-color: #D3D6E0;
	color: var(--dark-grey);
	font-weight: 500;
	background: #FAFBFF;
	padding: 10px 20px;
	border-radius: 10px;
}
.btn-outline-secondary:hover {
	background-color: var(--dark-grey);
	color: var(--white);
}

.section {
	padding: 80px 0;
}

@media (max-width:768px) {
	.section {
		padding: 40px 0;
	}
}
.bi::before, [class^="bi-"]::before, [class*=" bi-"]::before {
	font-size: 16px;
	position: relative;
	top: -3px;
}

.slick-dots {
	bottom: -60px;
}


/* Navbar */
/* .navbar {
	background-color: var(--white) !important;
}
.navbar-nav .nav-link {
	color: var(--black);
	margin-left: 1rem;
	font-weight: 600;
}
.navbar-nav .nav-link:hover {
	color: var(--orange);
}

.navbar-nav li {
	margin: 0 12px;
	padding: 12px 0;
}

.navbar-nav .sub-menu li {
	padding: 0;
}

.navbar-nav li a {
	color: var(--dark-grey);
	font-size: 16px;
	font-weight: 500;
	transition: 1s;
	text-decoration: none;
}

.navbar-nav li a:hover, .navbar-nav li.current-menu-item a {
	color: var(--orange);
}

.navbar-nav li {
	position: relative;
}


.navbar-nav li ul.sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--dark-grey);
	padding: 10px 0;
	min-width: 300px;
	border-radius: 6px;
	z-index: 9999;
}

.navbar-nav li:hover > ul.sub-menu {
	display: block;
}

.navbar-nav li ul.sub-menu li {
	margin: 0;
	display: block;
}

.navbar-nav li ul.sub-menu li a {
	color: var(--white);
	font-size: 14px;
	padding: 10px 20px;
	display: block;
	font-weight: 500;
	transition: all 0.3s ease;
}

.navbar-nav li ul.sub-menu li a:hover {
	background: var(--orange);
	color: var(--white);
	border-radius: 4px;
}
.navbar-toggler:focus {
	box-shadow: none!important;
} */





.navbar {
	background-color: var(--card-bg) !important;
/* 		border-bottom: 1px solid #282c34; */
			/* position: fixed; */
	  width: 100%;
		  /* padding: 15px 0; */
		  padding: 0;
		  z-index: 9999;
  }
  
  .navbar .nav-item {
		margin-left: 12px;
			padding: 15px 0;
  }
  
  .navbar-nav .nav-link {
	  color: var(--foreground);
	  font-weight: 600;
	  transition: 0.6s;
	  font-family: inherit;
	  font-feature-settings: inherit;
	  font-size: .875rem;
	  line-height: 1.25rem;
  }
  .navbar-nav .nav-link:hover {
	/* color: var(--primary); */
  }
  
  
	.mega-menu .dropdown-menu {
	  width: 900px;
	  border-radius: 8px;
	  background: #111;
	  border: none;
	  top: 100%;
	  left: 100%;
	  transform: translateX(-50%);
	}
	.mega-menu-left {
		background: #fff;
		padding: 15px;
		border: 1px solid #333;
	}
	.mega-menu-left ul li {
			font-size: .875rem;
	  padding: 15px;
	  color: #000;
	  font-weight: 600;
	  cursor: pointer;
  /*     border-radius: 6px; */
	  display: flex;
				  border-right: 1px solid transparent;
	  align-items: center;
	  gap: 8px;
	  transition: 0.6s;
	}
	.mega-menu-left ul li:hover,
	.mega-menu-left ul li.active {
	  background: #22242c;
			border-right: 1px solid #ff6600;
      color: #fff;
	}
	.mega-menu-right {
		color: #fff;
		background: #fff;
		padding: 15px;
		border: 1px solid #333;
		border-left: none;
	}
	.mega-panel {
	  display: none;
	}
	.mega-panel.active {
	  display: block;
	}
  .dropdown-toggle::after {
	  position: relative;
	  top: 2px;
	  left: 2px;
  }
	.hover-dropdown:hover > .dropdown-menu {
		  background-color: white !important;
	  display: block;
	  border: 1px solid;
	  padding: 20px 15px !important;
		  min-width: 320px;
			  top: 100%;
			  border-radius: 0;
	}
  
		.hover-dropdown:hover > .dropdown-menu li {
					  padding: 5px;
	  margin-bottom: 5px;
		  border-radius: 10px;
	  transition: 0.6s;
	  /* border: 1px solid #292929; */
	}
  .dropdown-header {
	  display: block;
	  margin-bottom: 10px;
	  padding: 10px;
	  color: black;
  }

  .hover-dropdown > .dropdown-menu li p {
	color: black;
  }
  
	  .hover-dropdown:hover > .dropdown-menu li:hover {
	  background: #22242c;
	}
  .hover-dropdown:hover > .dropdown-menu li:hover h6 .hover-dropdown:hover > .dropdown-menu li p {
	  transition: 0.6s;
  }
	  .hover-dropdown:hover > .dropdown-menu li:hover h6, .hover-dropdown:hover > .dropdown-menu li:hover p {
		color: #fff;
	}
  
  
	.mega-menu-right .mega-panel .sub-child-menu {
	  border: 1px solid #22242c;
	  background: transparent;
	  color: white;
	  border-radius: 10px;
	}
  
	  .mega-menu-right .mega-panel p, .mega-menu-right .mega-panel .sub-child-menu p {
		color: var(--black);
	}
  
		.mega-menu-right .mega-panel .sub-child-menu:hover {
		  border: 1px solid #22242c;
	  background: #22242c;
	}

	  .mega-menu-right .mega-panel .sub-child-menu:hover, .mega-menu-right .mega-panel .sub-child-menu:hover h6, .mega-menu-right .mega-panel .sub-child-menu:hover p {
		transition: 0.6s;
  }
  
		.mega-menu-right .mega-panel .sub-child-menu:hover h6, .mega-menu-right .mega-panel .sub-child-menu:hover p {
				color: var(--primary);
	}
  

  
  .mega-menu-left ul li i {
	  color: #ff6600;
  }
  .mega-menu-left ul li i::before {
	top: 1px;
  }
  .dropdown-toggle::after {
   transition: transform 0.3s ease; /* smooth flip */
  }
  .dropdown:hover .dropdown-toggle::after {
	transform: rotate(180deg); /* flips down/up smoothly */
  }
  
	  .nav-item:hover .nav-link {
			/* background: #22242c; */
	  /* border-radius: 10px; */
	  color: #ff6600;
	  }
  
  
	  /* Remove default outline & border */
  /* Remove default outline & border */
  .navbar-toggler {
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
  }
  
  /* Hamburger icon lines */
  .navbar-toggler-icon {
	width: 24px;
	height: 0;
	background-color: #000;
	display: block;
	position: relative;
	transition: all 0.3s ease;
  }
  
  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
	content: "";
	width: 24px;
	height: 2px;
	background-color: #000;
	position: absolute;
	left: 0;
	transition: all 0.3s ease;
  }
  
  .navbar-toggler-icon::before {
	top: -8px;
  }
  
  .navbar-toggler-icon::after {
	top: 8px;
  }
  
  /* === MENU OPEN (no collapsed class) === */
  .navbar-toggler:not(.collapsed) .navbar-toggler-icon {
	background-color: transparent;
  }
  
  .navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
	transform: rotate(45deg);
	top: 0;
  }
  
  .navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
	transform: rotate(-45deg);
	top: 0;
  }
  
  
	@media (min-width: 992px) {
	  .mega-menu:hover > .dropdown-menu {
		display: block !important;
	  }
	  .mega-menu-left {
	  min-height: 350px;
  }
  .navbar-nav .nav-link {
		padding-right: 1rem!important;
	  padding-left: 1rem!important;
  }
	}
  
	.dropdown-menu p {
	  margin-bottom: 0.5rem;
	}
  
	@media (max-width: 991.98px) {
	  .mega-menu .dropdown-menu {
		width: 100vw;
		max-width: 100%;
		left: 0 !important;
		transform: none !important;
		border-radius: 0;
	  }
  
	  .mega-menu-wrapper {
		padding: 0 10px;
	  }
  
	  .mega-menu-left,
	  .mega-menu-right {
				width: 95% !important;
  /*       padding: 15px 0 !important; */
		border: none !important;
	  }
  
	  .mega-menu-left ul {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
	  }
  
	  .mega-menu-left ul li {
				  width: 100%;
		/* flex: 1 1 45%; */
		flex: none;
		/* padding: 10px 8px; */
	  }
  .hover-dropdown:hover > .dropdown-menu {
		width: 95%;
			margin-top: 5px;
	  padding: 10px !important;
  }
	  .mega-menu-right {
		border-top: 1px solid #333;
	  }
  
	  .navbar .nav-item {
	  margin-left: 0;
		  padding: 5px 0;
  }
  .nav-item:hover .nav-link {
	  background: transparent;
  
  }
  .mega-panel.active h5 {
		  margin-left: 10px;
  }
  
  
	}
  

  

	




/* Footer */
footer {
	background: var(--black);
	color: var(--white);
	padding: 2rem 0;
	text-align: center;
	font-weight: 400;
}


.main-footer {
	background: #32282B;
	color: #fff;
	/* border-radius: 2rem 2rem 0 0; */
	text-align: left;
}
.footer-brand img { height: 41px; }
.footer-desc {
	font-size: 1.09rem;
	color: #dad7da;
	margin-bottom: 1.7rem;
}
.footer-list,
.footer-list li { list-style: none; margin: 0; padding: 0; }
.footer-list li { margin-bottom: 0.5rem;}
.footer-list li a {
	color: #e0d8de;
	text-decoration: none!important;
	transition: color 0.15s;
	font-weight: 500;
}
.footer-list li a:hover { color: #EA6E35; text-decoration: underline;}
.main-footer h6 {
	font-size: 1.1rem;
	color: #fff;
	margin-bottom: 1rem;
	font-weight: 600;
	text-decoration: none!important;
}
.main-footer .footer_logo {
	width: 160px;
	height: auto;
	margin-bottom: 20px;
}
.footer-social {
	margin-left: 0.4rem;
	margin-bottom: 2.8rem;
}
.footer-social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	margin-right: 12px;
	background: #EA6E35;
	color: #fff;
	border-radius: 50%;
	font-size: 1.77rem;
	transition: background 0.2s, color 0.2s;
}
.footer-social-icon:hover { background: #fff; color: #EA6E35; }
.footer-bottom {
	border-top: 1px solid #474047;
	padding-top: 2.1rem;
	color: #c0babf;
	font-size: 0.99rem;
}
.footer-bottom a {
	color: #c0babf;
	text-decoration: none;
	transition: color 0.15s;
	font-weight: 400;
}
.footer-bottom a:hover { color: #EA6E35; }
@media (max-width:991px) {
	/* .main-footer { border-radius: 1.1rem 1.1rem 0 0;} */
	.footer-top { flex-direction: column; }
	.hero-map-section .hero-content{
		margin-bottom:20px;
	}
}
@media (max-width:600px) {
	.main-footer .footer-bottom { flex-direction: column; gap: 0.7rem; }
	.footer-social-icon { width: 39px; height: 39px; font-size: 1.3rem;}
	.footer-desc { font-size: 0.98rem;}
}

.cta-orange {
	background-color: var(--orange);
	color: var(--white);
	padding: 12px 32px;
	border-radius: 6px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.cta-orange:hover {
	background-color: #cf5f2e;
	color: var(--white);
}

.cta-white {
	background-color: transparent;
	color: var(--orange);
	border: 2px solid var(--orange);
	padding: 12px 32px;
	border-radius: 6px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.cta-white:hover {
	background-color: var(--orange);
	color: var(--white);
}

.banner-image img {
	max-width: 900px;
	border: 1px solid #eee;
}


.text-orange {
	color: var(--orange);
}



/* Page.css */

/* Banner Section */

.hero-banner {
	background-color: #fafafa;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.how-it-works-section .process-cards-grid .orange-icon, .how-it-works-section .process-card:hover .dark-icon{
	display:none;
}
.how-it-works-section .process-card:hover .orange-icon{
	display:block;
}
.circle-img-v{
	width:16px;
	height:16px;
	vertical-align:middle;
}
.section-description-ind{
	font-size: 16px;
    font-weight: 400;
    color: #6E7180;
    line-height: 26px;
}
.center-d{
	display: flex;
	flex-direction: column;
	justify-content: center;   /* vertical center */
	align-items: center;       /* horizontal center */
	text-align: center;
}
/* Onboarding */

.onboarding-process {
	background-color: var(--white);
	position: relative;
}

.process-step {
	position: relative;
}

.icon-circle {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	border: 2px dashed #ddd;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	color: #b7b7b7;
	font-size: 28px;
	transition: all 0.3s ease;
}

.icon-circle.active {
	background-color: var(--orange);
	border: 2px dashed var(--orange);
	color: var(--white);
}






/* Hero Map Section */
.section-space {
	padding: 80px 0;
	background-color: #fafafa;
}
.hero-map-section {
	padding: 80px 0;
	background-color: #fafafa;
	position: relative;
	overflow: hidden;
}

/* Left Content */


.section-title {
	font-size: 40px;
	font-weight: 600;
	color: #EA6E35;
	line-height: 52px;
	font-family: 'Manrope', sans-serif;
}

.hero-map-section .section-description {
	padding-bottom: 30px;
}

.section-description {
	font-size: 18px;
	line-height: 26px;
	color: #6E7180;
	font-weight: 400;

	font-family: 'Manrope', sans-serif;
}

/* Hero Buttons */


.btn-hero-primary {
	border: 1px solid transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 50px;
	background-color: #EA6E35;
	color: #fff;
	line-height: 24px;
	font-size: 16px;
	font-weight: 500;
	border-radius: 16px;
	font-family: 'Manrope', sans-serif;
	transition: all 0.3s ease;
	margin-right:30px;
}

.btn-hero-primary:hover {
	border: 1px solid #EA6E35;
	color: #EA6E35;
	background-color:#fff;
}

.btn-hero-secondary {
	border: 1px solid transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 45px;
	background-color: transparent;
	color: #EA6E35;
	font-size: 16px;
	border-radius: 16px;
	border: 1px solid #EA6E35;
	font-family: 'Manrope', sans-serif;
	transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
	background-color: #EA6E35;
	color: #fff;
	border:none;
}

/* Map Container */
img{
	width: 100%;
	height: auto;
}

/* How It Works Section */


/* Section Header */
.section-header {
	margin-bottom: 60px;
}

/* Process Cards Grid */
.process-cards-grid {
	margin-top: 60px;
	row-gap: 30px;
}

/* Process Card */
.process-card {
	border: 1px solid #D3D6E0;
	border-radius: 20px;
	padding: 14px;
	transition: all 0.3s ease;
	height: 100%;
}

.process-card:hover {
	border-color: #FF6B3D;
	transform: translateY(-4px);
}

/* Process Card Icon */
.process-card-icon {
	width: 50px;
	height: 70px;
	transition: transform 0.3s ease;
}

.process-card:hover .process-card-icon {
	transform: scale(1.1);
}


/* Process Card Content */
.process-card-title {
	font-size: 20px;
	line-height: 28px;
	font-weight: 600;
	color: #30282B;
	margin-bottom: 8px;
	font-family: 'Manrope', sans-serif;
}

.process-card-description {
	font-size: 14px;
	line-height: 22px;
	color: #6E7180;
	font-weight: 400;
	font-family: 'Manrope', sans-serif;
}

/* Platform Features Section */


/* Features Tabs Container */
.features-tabs-container {
	background: #fff;
	border-radius: 20px;
	padding: 0;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
	overflow: hidden;
}

/* Tab Navigation */
.features-tabs-nav {
	background-color: #30282B;
	border-radius: 20px;
	padding: 4px;
}

.features-tabs-nav .nav-item {
	flex: 1;
	margin: 0;
	height: 42px;
}


.features-tabs-nav .nav-item:last-child .nav-link {
	border-right: none;
}

.features-tabs-nav .nav-link img, .features-accordion .accordion-button img {
	width: 24px;
	padding-right: 4px;
	height: 20px;
	vertical-align: sub;
}
.features-accordion .accordion-button{
	background: #000;
	color: #fff;
}
.features-accordion button:focus:not(:focus-visible){
	border:none;
	box-shadow:none;
	outline:none;
}
.features-tabs-nav .nav-link.active img{
	filter: brightness(0) saturate(100%);
}
/* Accordion icon color when panel is OPEN (not .collapsed) */
.features-accordion .accordion-button:not(.collapsed) img {
	filter: unset;
}
.features-tabs-nav .nav-link:hover {
	background-color: rgba(255, 255, 255, 0.05);
	color: #fff;
}
.features-tabs-nav .nav-link:hover span{
	font-weight: 600;
	font-size: 16px;
	color: #EA6E35;
}
.features-tabs-nav .nav-link.active {
	background-color: #fff;
	color: #FF6B3D;
	padding: 8px 12px;
}
.features-tabs-nav .nav-link{
	border-radius:16px;
	color: #fff;
	font-weight: 600;
	font-size: 16px;
	padding: 8px 12px;
}

/* Tab Content */
.features-tab-content {
	padding: 30px;
}

.tab-pane {
	animation: fadeIn 0.5s ease-in-out;
}

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

/* Feature Content */
.feature-content {
	padding-right: 40px;
}

.feature-number {
	display: inline-block;
	font-size: 80px;
	font-weight: 800;
	color: #f5f5f5;
	line-height: 1;
	margin-bottom: 20px;
	font-family: 'Manrope', sans-serif;
}

.feature-title {
	font-size: 32px;
	font-weight: 600;
	color: #40424D;
	margin-bottom: 20px;
	font-family: 'Manrope', sans-serif;
	line-height: 40px;
}


/* Feature Image */

.feature-image.home-feature-image img {
	width: 85%;
	height: 400px;
	display: block;
	max-height: 400px;
	margin: 0 auto;
	object-fit: cover;
}


/* Industries Overlapping Cards */
.industries-card-wrap {
	position: relative;
	padding: 60px 0;
}

.industry-card {
	height: 450vh;
	position: relative;
}

.industry-card:nth-child(1) {
	height: 450vh;
}

.industry-card:nth-child(2) {
	margin-top: -360vh;
	height: 360vh;
}

.industry-card:nth-child(3) {
	margin-top: -270vh;
	height: 270vh;
}

.industry-card:nth-child(4) {
	margin-top: -180vh;
	height: 180vh;
}

.industry-card-stick {
	top: 2rem;
	position: sticky;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border-radius: 2rem;
	background: linear-gradient(to right, #FFF1EA 0%, #FAFAFA 100%);
	background-size: cover;
	/* height: 90vh; */
	max-width: 1200px;
	margin: 0 auto;
	padding: 30px;
	box-shadow: 0 20px 60px rgba(234, 110, 53, 0.15);
	overflow: hidden;
}

.industry-card-stick.industry-card-2 {
	z-index: 2;
}

.industry-card-stick.industry-card-3 {
	z-index: 3;
}

.industry-card-stick.industry-card-4 {
	z-index: 4;
}

/* Card Content Styling */
.industries-section .ind-bg-color {
	background: transparent;
	padding: 0;
	border-radius: 0;
	box-shadow: none;
	margin: 0;
	min-height: 100%;
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
}

/* Industry Illustration */
.industry-illustration {
	/* padding: 40px; */
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.industry-illustration img {
	max-width: 100%;
	height: 450px;
	object-fit: contain;
}

/* Responsive Adjustments for Overlapping Cards */
@media (max-width: 1199px) {
	.industry-card {
		height: 400vh;
	}

	.industry-card:nth-child(1) {
		height: 400vh;
	}

	.industry-card:nth-child(2) {
		margin-top: -320vh;
		height: 320vh;
	}

	.industry-card:nth-child(3) {
		margin-top: -240vh;
		height: 240vh;
	}

	.industry-card:nth-child(4) {
		margin-top: -160vh;
		height: 160vh;
	}

	.industry-card-stick {
		height: 80vh;
	}

}

@media (max-width: 991px) {
	.industry-card {
		height: 350vh;
	}

	.industry-card:nth-child(1) {
		height: 314vh;
	}

	.industry-card:nth-child(2) {
		margin-top: -280vh;
		height: 244vh;
	}

	.industry-card:nth-child(3) {
		margin-top: -210vh;
		height: 174vh;
	}

	.industry-card:nth-child(4) {
		margin-top: -140vh;
		height: 140vh;
	}

	.industry-card-stick {
		height: 30vh;
		top: 1.5rem;
	}
	.faq-section .faq-header{
		display: flex;
		justify-content: space-between;
	}
	.faq-section .faq-header .faq-cta-box{
		display: inline-table;
	}
}

@media (max-width: 767px) {
	h1{
		font-size:32px!important;
		line-height:42px!important;
	}
	h2{
		font-size:30px!important;
		line-height:42px!important;
	}
	h3{
		font-size:24px!important;
		line-height:36px!important;
	}
	.industries-card-wrap {
		padding: 40px 0;
	}

	.industry-card {
		height: 300vh;
	}

	.industry-card:nth-child(1) {
		height: 300vh;
	}

	.industry-card:nth-child(2) {
		margin-top: -240vh;
		height: 240vh;
	}

	.industry-card:nth-child(3) {
		margin-top: -180vh;
		height: 180vh;
	}

	.industry-card:nth-child(4) {
		margin-top: -120vh;
		height: 120vh;
	}

	.industry-card-stick {
		height: 85vh;
		top: 1rem;
		border-radius: 1.5rem;
	}
	.industry-illustration img{
		height:auto;
	}

	.industries-section .ind-bg-color {
		flex-direction: column;
	}

	.industry-illustration {
		padding: 20px;
	}

	.industry-content {
		padding: 20px;
	}
}




/* Industry Content */
.industry-content {
	padding: 30px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}

/* Industry Badge */
.industry-badge {
	font-size: 16px;
	line-height: 24px;
	color: #EA6E35;
}

/* Industry Title */
.industry-title {
	font-size: 32px;
	font-weight: 800;
	color: #40424D;
	line-height: 40px;
	margin-bottom: 12px;
	font-family: 'Manrope', sans-serif;
}


/* Industry Features List */
.industry-features {
	list-style: none;
	padding: 0;
	margin: 0;
}
.ind-space{
	margin: 50px 0;
}
.industry-features li {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
	font-size: 16px;
	color: #6E7180;
	font-weight: 400;
	font-family: 'Manrope', sans-serif;
	line-height: 24px;
}

.industry-features li i {
	color: #FF6B3D;
	font-size: 18px;
	flex-shrink: 0;
	margin-top: 2px;
}

/* Why Choose Section */
.why-choose-section {
	padding: 100px 0;
	background-color: #30282B;
	position: relative;
	overflow: hidden;
}
.why-choose-section .section-header{
	margin: 110px 0;
	height:200px;
}

/* Floating Device Illustrations */
.floating-devices {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
}

.device {
	position: absolute;
	animation: float 6s ease-in-out infinite;
}

.device img {
	width: 100%;
	height: auto;
	filter: drop-shadow(0 4px 16px rgba(255, 107, 61, 0.15));
	margin: 30px;
}

/* Device Positions */
.device-phone-1 {
	top: 0;
	left: 15%;
	width: 80px;
	animation-delay: 0s;
	transform: rotate(-15deg);
}

.device-laptop-1 {
	bottom: 38%;
	left: 8%;
	width: 180px;
	animation-delay: 1s;
	transform: rotate(8deg);
}

.device-tablet-1 {
	top: 0;
	right: 15%;
	width: 180px;
	animation-delay: 2s;
	transform: rotate(12deg);
}

.device-desktop-1 {
	bottom: 38%;
	right: 18%;
	width: 120px;
	animation-delay: 1.5s;
	transform: rotate(-10deg);
}

/* Float Animation */
@keyframes float {
	0%, 100% {
		transform: translateY(0) rotate(var(--rotation, 0deg));
	}
	50% {
		transform: translateY(-20px) rotate(var(--rotation, 0deg));
	}
}

/* Section Content */
.why-choose-section .row {
	position: relative;
	z-index: 2;
}

/* Section Header */

/* Why Choose Grid */
.why-choose-grid {
	margin-top: 80px;
}

/* Why Choose Card */
.why-choose-card {
	transition: transform 0.3s ease;
	padding-left: 10px;
}
.why-border{
	border-right: 1px solid #EA6E35;
	border-right-style: dashed;
}
.why-border:last-child{
	border:none;
	border-right-style:none;
}

/* Why Icon */
.why-icon {
	width: 36px;
	height: 36px;
	transition: all 0.3s ease;
	margin-bottom: 10px;
}


/* Why Title */
.why-title {
	font-size: 16px;
	font-weight: 600;
	color: #FFF;
	margin-bottom: 12px;
	font-family: 'Manrope', sans-serif;
	line-height: 24px;
}
.bg-head-mob{
	font-size:43px!important;
	line-height:48px;
}
/* Why Description */
.why-description {
	font-size: 13px;
	line-height: 20px;
	color: #FFF;
	margin: 0;
	font-family: 'Manrope', sans-serif;
}
/* Testimonials Section */
.testimonials-section {
	padding: 100px 0;
	background-color: #fafafa;
}

/* Left Column: Header */
.testimonials-header {
	padding-right: 40px;
}


/* Overall Rating */
.overall-rating {
	display: flex;
	align-items: center;
	gap: 20px;
	padding-top: 80px;
}


.rating-avatars {
	display: flex;
}

.rating-avatars img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 3px solid #fff;
	margin-left: -10px;
	object-fit: cover;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.rating-info {
	flex: 1;
}

.rating-num{
	display:flex;
	gap:10px;
	align-items:center;
}

.score-number, .score-max {
	font-size: 16px;
	color: #40424D;
}




.rating-stars i {
	color: #FF6B3D;
	font-size: 18px;
	margin-right: 2px;
}

.rating-text {
	font-size: 14px;
	color: #6b7280;
	margin: 0;
	font-family: 'Manrope', sans-serif;
}

/* FAQ Section */
.faq-section {
	padding: 100px 0;
	background-color: #fff;
}

/* Left Column: Header */
.faq-header {
	padding-right: 40px;
}

.faq-section .section-title {
	font-size: 40px;
	font-weight: 600;
	color: #40424D;
	margin-bottom: 40px;
	font-family: 'Manrope', sans-serif;
	line-height: 48px;
}

/* CTA Box */
.faq-cta-box {
	background: #EA6E35;
	border-radius: 20px;
	padding: 15px;
	display: flex;
}

.cta-content {
	flex: 1;
}

.cta-text {
	font-size: 18px;
	color: #fff;
	font-family: 'Manrope', sans-serif;
	margin: 0;
}

.cta-subtext {
	font-size: 18px;
	font-weight: 400;
	color: #fff;
	margin: 0;
	font-family: 'Manrope', sans-serif;
}

.btn-cta {
	display: inline-block;
	padding: 14px 32px;
	background: #fff;
	color: #FF6B3D;
	font-size: 16px;
	font-weight: 700;
	border-radius: 10px;
	text-decoration: none;
	text-align: center;
	font-family: 'Manrope', sans-serif;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
	color: #FF6B3D;
}

/* Right Column: Accordion */
.faq-accordion {
	--bs-accordion-border-color: transparent;
	--bs-accordion-bg: transparent;
}

.faq-accordion .accordion-item {
	background: transparent;
	border: none;
	border-bottom: 1px solid #e5e7eb;
	margin-bottom: 0;
}

.faq-accordion .accordion-item:last-child {
	border-bottom: none;
}

/* Accordion Button */
.faq-accordion .accordion-button {
	background: transparent;
	padding: 24px 50px 24px 0;
	font-size: 18px;
	font-weight: 600;
	color: #2c3e50;
	font-family: 'Manrope', sans-serif;
	border: none;
	box-shadow: none;
	position: relative;
}

.faq-accordion .accordion-button:not(.collapsed) {
	background: transparent;
	color: #FF6B3D;
	box-shadow: none;
}

.faq-accordion .accordion-button:focus {
	box-shadow: none;
	border: none;
}

/* Plus/Minus Icon */
.faq-accordion .accordion-button::after {
	content: '+';
	background: none;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	font-weight: 300;
	color: #2c3e50;
	position: absolute;
	right: 0;
	transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
	content: '×';
	color: #FF6B3D;
	font-size: 36px;
	transform: rotate(0deg);
}

.faq-accordion .accordion-button.collapsed::after {
	transform: rotate(0deg);
}

/* Accordion Body */
.faq-accordion .accordion-body {
	padding: 0 0 24px 0;
	font-size: 16px;
	line-height: 1.7;
	color: #6b7280;
	font-family: 'Manrope', sans-serif;
}

.faq-accordion .accordion-collapse {
	border: none;
}

/* CTA Section */
.cta-section {
	padding: 80px 0;
	background-color: #fafafa;
	position: relative;
}

/* CTA Wrapper */
.cta-wrapper {
	background: #EA6E35;
	border-radius: 30px;
	padding: 30px 60px;
	/* position: relative; */
	/* overflow: hidden; */
}

/* Decorative Pattern (Optional) */

.cta-wrapper .row {
	/* position: relative; */
	/* z-index: 2; */
}

/* CTA Content */
.cta-content {
	padding-right: 40px;
}

.cta-title {
	font-size: 32px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 20px;
	font-family: 'Manrope', sans-serif;
	line-height: 40px;
}

.cta-description {
	font-size: 18px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 32px;
	font-family: 'Manrope', sans-serif;
}

/* CTA Button */
.btn-cta-primary {
	display: inline-block;
	padding: 16px 40px;
	background: #fff;
	color: #FF6B3D;
	font-size: 18px;
	font-weight: 700;
	border-radius: 12px;
	text-decoration: none;
	font-family: 'Manrope', sans-serif;
	transition: all 0.3s ease;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-cta-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
	color: #FF6B3D;
}

/* Laptop Mockup */
.cta-mockup {
	/* position: relative; */
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.cta-mockup img {
	width: 100%;
	max-width: 500px;
	position: absolute;
	top: -27px;
	right: 112px;
	border-radius: 30px;
	/* height: auto;
	filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
	animation: float 6s ease-in-out infinite; */
}

/* --- Core CTA Wrapper --- */
.cta-wrapper {
    background: #EA6E35;
    border-radius: 30px;
    padding: 30px 60px;
    /* IMPORTANT: Ensure the row/columns are the reference for the image position */
    position: relative; 
    /* Remove 'overflow: hidden' if it's implicitly there, but generally keep it for clean corners */
}

/* --- Left Column: CTA Content (No changes needed here) --- */
.cta-content {
    padding-right: 40px;
}

/* --- Right Column: Laptop Mockup --- */

.cta-mockup {
    /* Use flexbox to easily align the content (the laptop image) */
    display: flex;
    justify-content: flex-end; /* Push image to the right edge of the column */
    align-items: center; /* Vertically center the image within the column */
    height: 100%; /* Ensure the mockup container takes full height */
    
    /* Set column context for the image positioning */
    position: relative;
    right: 0;
}

.cta-mockup img {
    /* Remove fixed absolute positioning that was causing overflow issues */
    position: relative; 
    
    /* Set the image size (adjust max-width to control how far it extends) */
    width: 100%;
    max-width: 500px; /* Controls the overall size */

    /* Pull the image up slightly using a negative top margin to get the floating effect */
    /* This value is calculated based on the laptop's height relative to the CTA height */
    margin-top: -100px; 
    margin-bottom: -57px;
    margin-right: -172px;
    /* Remove animation for initial stability */
    /* animation: float 6s ease-in-out infinite; */
}


/* --- Responsive Fixes --- */
@media (max-width: 1199px) {
    /* Ensure the column gap doesn't look weird when columns stack */
    .cta-mockup img {
        /* On smaller desktop/tablet, reduce the size and pull out less */
        max-width: 400px;
        margin-right: -60px; 
        margin-top: -40px;
    }
}

@media (max-width: 991px) {
    /* Tablet/Mobile View: Columns stack, hide the overflow entirely or re-position */
    .cta-wrapper {
        text-align: center;
        padding: 40px 20px;
    }

    .cta-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .cta-mockup {
        justify-content: center; /* Center the laptop below the text */
        margin-top: 20px;
    }
    
    .cta-mockup img {
        position: relative;
        max-width: 300px; /* Smaller image */
        margin-top: 0; /* Remove vertical lift */
        margin-right: 0; /* Remove horizontal push */
		margin-bottom: 0;
    }
}

/* Float Animation */
@keyframes float {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-15px);
	}
}

/* Responsive Design */
@media (max-width: 1199px) {
	.cta-wrapper {
		padding: 50px 40px;
	}

	.cta-title {
		font-size: 36px;
	}

	.cta-description {
		font-size: 17px;
	}
}

@media (max-width: 991px) {
	.cta-section {
		padding: 60px 0;
	}

	.cta-wrapper {
		padding: 40px 30px;
	}

	.cta-content {
		padding-right: 0;
		text-align: center;
		margin-bottom: 40px;
	}

	.cta-title {
		font-size: 32px;
	}

	.cta-description {
		font-size: 16px;
	}

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

	.cta-mockup img {
		max-width: 500px;
	}
	/* Make menu overlay */
	#mainNavbar {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: #fff;        
		z-index: 9999;
		padding: 0 20px 20px 20px;
	}

	/* .navbar {
		position: relative;
	}
	.custom-toggler .navbar-toggler-icon {
		background-image: none;
	}

	.custom-toggler .navbar-toggler-icon {
		width: 24px;
		height: 2px;
		display: inline-block;
		position: relative;
		background-color: #000;              
		box-shadow: 0 -6px 0 0 #000,         
			0  6px 0 0 #000;         
		transition: all 0.3s ease;
	}

	.custom-toggler.collapsed .navbar-toggler-icon {
		transform: none;
		box-shadow: 0 -6px 0 0 #000,
			0  6px 0 0 #000;
	}

	.custom-toggler:not(.collapsed) .navbar-toggler-icon {
		background-color: #000;
		box-shadow: none;                   
		transform: rotate(45deg);
	}

	.custom-toggler .navbar-toggler-icon::before {
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		width: 24px;
		height: 2px;
		background-color: #000;
		transition: all 0.3s ease;
		opacity: 0;                          
	}

	.custom-toggler:not(.collapsed) .navbar-toggler-icon::before {
		opacity: 1;
		transform: rotate(-90deg);
	} */
		.navbar {
		  padding: 20px 0;
	  }
}

@media (max-width: 767px) {
	.cta-section {
		padding: 50px 0;
	}

	.cta-wrapper {
		padding: 30px 20px;
		border-radius: 20px;
	}

	.cta-content {
		margin-bottom: 30px;
	}

	.cta-title {
		font-size: 28px;
	}

	.cta-description {
		font-size: 15px;
		margin-bottom: 24px;
	}

	.btn-cta-primary {
		width: 100%;
		padding: 14px 32px;
		font-size: 16px;
	}

	.cta-mockup img {
		max-width: 100%;
	}
}

/* ============================================
COMPREHENSIVE RESPONSIVE STYLES
============================================ */

/* iPad Pro & Large Tablets (1024px - 1199px) */
@media (max-width: 1199px) and (min-width: 1024px) {
	.section-title {
		font-size: 36px;
		line-height: 46px;
	}

	.section-description {
		font-size: 17px;
		line-height: 24px;
	}

	.hero-map-section {
		padding: 60px 0;
	}

	.section-space {
		padding: 60px 0;
	}

	.feature-title {
		font-size: 28px;
		line-height: 36px;
	}

	.feature-number {
		font-size: 70px;
	}

	.industry-title {
		font-size: 28px;
		line-height: 36px;
	}

	.why-choose-section {
		padding: 80px 0;
	}

	.testimonials-section {
		padding: 80px 0;
	}

	.faq-section {
		padding: 80px 0;
	}
}
@media(max-width:1024px){
	.faq-section .btn-cta{
		padding: 14px 10px;
	}
	.faq-section .cta-content {
		padding-right: 0;
	}
	.bg-head-mob{
		font-size:30px!important;
		line-height:36px!important;
	}
}
/* iPad & Tablets (768px - 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
	/* Hero Section */
	.hero-map-section {
		padding: 50px 0;
	}
	

	.section-title {
		font-size: 32px;
		line-height: 42px;
	}

	.section-description {
		font-size: 16px;
		line-height: 24px;
	}

	.btn-hero-primary,
	.btn-hero-secondary {
		padding: 12px 40px;
		font-size: 15px;
		margin-right: 20px;
	}

	/* How It Works Section */
	.section-space {
		padding: 50px 0;
	}

	.section-header {
		margin-bottom: 40px;
	}

	.process-cards-grid {
		margin-top: 40px;
		row-gap: 20px;
	}

	.process-card {
		padding: 20px;
	}

	.process-card-title {
		font-size: 18px;
		line-height: 26px;
	}

	.process-card-description {
		font-size: 13px;
		line-height: 20px;
	}

	/* Features Tabs */
	.features-tabs-nav {
		flex-wrap: wrap;
		padding: 8px;
	}

	.features-tabs-nav .nav-item {
		flex: 0 0 50%;
		margin-bottom: 4px;
	}

	.features-tabs-nav .nav-link {
		font-size: 14px;
		padding: 6px 10px;
	}

	.features-tab-content {
		padding: 25px;
	}

	.feature-content {
		padding-right: 0;
		margin-bottom: 30px;
	}

	.feature-number {
		font-size: 60px;
	}

	.feature-title {
		font-size: 26px;
		line-height: 34px;
	}

	.feature-image.home-feature-image img {
		width: 100%;
		height: 350px;
		max-height: 350px;
	}

	/* Industries Section */
	.industries-slider-wrapper {
		padding: 40px 0;
	}

	.industries-slider {
		padding: 30px 0 60px;
	}

	.industry-content {
		padding: 25px;
	}

	.industry-title {
		font-size: 26px;
		line-height: 34px;
	}

	.industry-features li {
		font-size: 15px;
		line-height: 22px;
	}

	/* Why Choose Section */
	.why-choose-section {
		padding: 60px 0;
	}

/* 	.why-choose-section .section-header {
		margin: 60px 0;
		height: auto;
	} */

/* 	.why-choose-grid {
		margin-top: 50px;
	} */
	.why-choose-section .section-header{
		margin-bottom:0;
	}
	.device-desktop-1, .device-laptop-1 {
		bottom: 42%;
	}
	.why-choose-grid {
		margin-top: 100px;
	}
	
	.why-border {
		padding-bottom: 30px;
		margin-bottom: 30px;
	}

	.why-border:last-child {
		border-bottom: none;
		margin-bottom: 0;
	}

	.why-title {
		font-size: 15px;
		line-height: 22px;
	}

	.why-description {
		font-size: 12px;
		line-height: 18px;
	}

	/* Testimonials Section */
	.testimonials-section {
		padding: 60px 0;
	}

	.testimonials-header {
		padding-right: 0;
		margin-bottom: 40px;
	}

	.overall-rating {
		padding-top: 40px;
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}

	/* FAQ Section */
	.faq-section {
		padding: 60px 0;
	}

	.faq-header {
		padding-right: 0;
		margin-bottom: 30px;
	}

	.faq-section .section-title {
		font-size: 32px;
		line-height: 40px;
		margin-bottom: 30px;
	}

	.faq-cta-box {
		flex-direction: column;
		gap: 15px;
		padding: 20px;
	}

	.btn-cta {
		width: 100%;
		text-align: center;
	}

	.faq-accordion .accordion-button {
		padding: 20px 40px 20px 0;
		font-size: 16px;
	}

	/* CTA Section */
	.cta-section {
		padding: 60px 0;
	}

	.cta-wrapper {
		padding: 40px 30px;
	}

	.cta-content {
		padding-right: 0;
		margin-bottom: 30px;
	}

	.cta-title {
		font-size: 28px;
		line-height: 36px;
	}

	.cta-description {
		font-size: 16px;
	}

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

	/* 	.cta-mockup img {
	max-width: 100%;
} */
	.cta-mockup img{
        top: 0;
        right: 0;
		max-width: 378px;
		margin-top: 0; /* Remove vertical lift */
        margin-right: 0; /* Remove horizontal push */
		margin-bottom: 0;
	}
}

/* Mobile Devices (320px - 767px) */
@media (max-width: 767px) {
	/* Hero Section */
	.hero-map-section {
		padding: 40px 0;
	}
	.bg-head-mob{
		font-size:25px!important;
		line-height:36px;
	}

	.section-title {
		font-size: 28px;
		line-height: 36px;
	}

	.section-description {
		font-size: 15px;
		line-height: 22px;
	}

	.hero-map-section .section-description {
		padding: 20px 0;
		margin-bottom:10px;
	}

	.hero-buttons {
		display: flex;
		flex-direction: column;
		gap: 15px;
		align-items: flex-start;
	}

	.btn-hero-primary,
	.btn-hero-secondary {
		width: 100%;
		max-width: 280px;
		margin-right: 0;
		padding: 12px 30px;
		font-size: 15px;
		text-align: center;
	}

	/* How It Works Section */
	.section-space {
		padding: 40px 0;
	}

	.section-header {
		margin-bottom: 30px;
	}

	.process-flow-diagram {
		margin: 30px 0;
	}

	.process-cards-grid {
		margin-top: 30px;
		row-gap: 20px;
	}

	.process-card {
		padding: 20px;
	}

	.process-card-icon {
		width: 45px;
		height: 60px;
	}

	.process-card-title {
		font-size: 18px;
		line-height: 24px;
	}

	.process-card-description {
		font-size: 13px;
		line-height: 20px;
	}

	/* Features Tabs */
	.features-tabs-container {
		border-radius: 16px;
	}

	.features-tabs-nav {
		flex-direction: column;
		padding: 8px;
	}

	.features-tabs-nav .nav-item {
		flex: 1;
		width: 100%;
		margin-bottom: 4px;
		height: auto;
	}

	.features-tabs-nav .nav-link {
		font-size: 14px;
		padding: 10px 12px;
		width: 100%;
		justify-content: flex-start;
	}

	.features-tabs-nav .nav-link img {
		width: 20px;
		height: 18px;
		margin-right: 8px;
	}

	.features-tab-content {
		padding: 20px;
	}

	.feature-content {
		padding-right: 0;
		margin-bottom: 30px;
		text-align: center;
	}

	.feature-number {
		font-size: 50px;
		margin-bottom: 15px;
	}

	.feature-title {
		font-size: 24px;
		line-height: 32px;
		margin-bottom: 15px;
	}

	.feature-description {
		font-size: 15px;
		line-height: 22px;
	}

	.feature-image.home-feature-image {
		text-align: center;
	}

	.feature-image.home-feature-image img {
		width: 100%;
		height: auto;
		max-height: 300px;
		object-fit: contain;
	}

	/* Industries Section */
	.industries-section .section-header {
		margin-bottom: 30px;
	}

	.industries-section .section-description br {
		display: none;
	}

	.industries-card-wrap {
		padding: 30px 0;
	}

	.industry-card {
		height: 250vh;
	}

	.industry-card:nth-child(1) {
		height: 290vh;
	}

	.industry-card:nth-child(2) {
		margin-top: -200vh;
		height: 256vh;
	}

	.industry-card:nth-child(3) {
		margin-top: -150vh;
		height: 187vh;
	}
	.faq-section .faq-header {
        display: block;
	}
	.why-choose-section .container .section-header{
		margin:0;
	}
	.cta-mockup img{
		position:unset;
	}


	.industry-card:nth-child(4) {
		margin-top: -100vh;
		height: 100vh;
	}

	.industry-card-stick {
/* 		height: 50vh; */
		top: 1rem;
		border-radius: 1rem;
		padding: 15px;
	}

	.industries-section .ind-bg-color {
		padding: 0;
		flex-direction: column;
	}

	.industry-illustration {
		margin-bottom: 15px;
		padding: 15px;
	}

	.industry-content {
		padding: 15px;
	}

	.industry-title {
		font-size: 20px;
		line-height: 28px;
	}

	.industry-features li {
		font-size: 13px;
		line-height: 18px;
	}

	.industry-badge {
		font-size: 14px;
		line-height: 20px;
	}

	.industry-title {
		font-size: 24px;
		line-height: 32px;
		margin-bottom: 10px;
	}

	.industry-features {
		margin-top: 15px;
	}

	.industry-features li {
		font-size: 14px;
		line-height: 20px;
		margin-bottom: 10px;
	}

	.industry-features li i {
		font-size: 16px;
	}

	/* Why Choose Section */
	.why-choose-section {
		padding: 50px 0;
	}

	.why-choose-section .section-header {
		margin: 40px 0;
		height: auto;
	}

	.why-choose-section .section-description br {
		display: none;
	}

	.floating-devices {
		display: none;
	}

	.why-choose-grid {
		margin-top: 40px;
	}

	.why-border {
		border-right: none;
		border-bottom: 1px solid #EA6E35;
		border-bottom-style: dashed;
		padding-bottom: 25px;
		margin-bottom: 25px;
	}

	.why-border:last-child {
		border-bottom: none;
		margin-bottom: 0;
	}

	.why-choose-card {
		padding-left: 0;
		text-align: center;
	}

	.why-icon {
		margin: 0 auto 15px;
	}

	.why-title {
		font-size: 16px;
		line-height: 24px;
		margin-bottom: 10px;
	}

	.why-description {
		font-size: 13px;
		line-height: 20px;
	}

	/* Testimonials Section */
	.testimonials-section {
		padding: 50px 0;
	}

	.testimonials-header {
		padding-right: 0;
		margin-bottom: 30px;
		text-align: center;
	}

	.testimonials-section .section-title {
		font-size: 28px;
		line-height: 36px;
	}

	.testimonials-section .section-description {
		font-size: 15px;
		line-height: 22px;
	}

	.overall-rating {
		padding-top: 30px;
		flex-direction: column;
		align-items: center;
		gap: 15px;
		text-align: center;
	}

	.rating-avatars {
		justify-content: center;
	}

	.rating-info {
		text-align: center;
	}

	.rating-num {
		justify-content: center;
	}

	/* FAQ Section */
	.faq-section {
		padding: 50px 0;
	}

	.faq-header {
		padding-right: 0;
		margin-bottom: 30px;
		text-align: center;
	}

	.faq-section .section-title {
		font-size: 28px;
		line-height: 36px;
		margin-bottom: 25px;
	}

	.faq-section .section-title br {
		display: none;
	}

	.faq-cta-box {
		flex-direction: column;
		gap: 15px;
		padding: 20px;
		text-align: center;
	}

	.cta-text {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.cta-text br {
		display: none;
	}

	.btn-cta {
		width: 100%;
		text-align: center;
		padding: 12px 24px;
		font-size: 15px;
	}

	.faq-accordion .accordion-button {
		padding: 18px 35px 18px 0;
		font-size: 16px;
		line-height: 24px;
	}

	.faq-accordion .accordion-body {
		font-size: 15px;
		line-height: 24px;
		padding: 0 0 18px 0;
	}

	/* CTA Section */
	.cta-section {
		padding: 50px 0;
	}

	.cta-wrapper {
		padding: 30px 20px;
		border-radius: 20px;
	}

	.cta-content {
		padding-right: 0;
		margin-bottom: 30px;
		text-align: center;
	}

	.cta-title {
		font-size: 24px;
		line-height: 32px;
		margin-bottom: 15px;
	}

	.cta-description {
		font-size: 15px;
		line-height: 22px;
		margin-bottom: 25px;
	}

	.btn-cta-primary {
		width: 100%;
		padding: 14px 32px;
		font-size: 16px;
	}

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

	.cta-mockup img {
		max-width: 100%;
	}
}

/* Small Mobile Devices (320px - 575px) */
@media (max-width: 575px) {
	.section-title {
		font-size: 24px;
		line-height: 32px;
	}

	.section-description {
		font-size: 14px;
		line-height: 20px;
	}

	.btn-hero-primary,
	.btn-hero-secondary {
		max-width: 100%;
		padding: 12px 24px;
		font-size: 14px;
	}

	.process-card {
		padding: 15px;
	}

	.process-card-title {
		font-size: 16px;
		line-height: 22px;
	}

	.process-card-description {
		font-size: 12px;
		line-height: 18px;
	}

	.feature-number {
		font-size: 40px;
	}

	.feature-title {
		font-size: 20px;
		line-height: 28px;
	}

	.industry-title {
		font-size: 20px;
		line-height: 28px;
	}

	.why-title {
		font-size: 15px;
		line-height: 22px;
	}

	.faq-section .section-title {
		font-size: 24px;
		line-height: 32px;
	}

	.cta-title {
		font-size: 22px;
		line-height: 30px;
	}
}

/* Landscape Mobile & Small Tablets (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
	.hero-buttons {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.btn-hero-primary,
	.btn-hero-secondary {
		max-width: 240px;
	}

	.process-cards-grid {
		row-gap: 25px;
	}

	.why-choose-card {
		text-align: left;
	}

	.why-icon {
		margin: 0 0 15px 0;
	}
}

/* Print Styles */
@media print {
	.floating-devices,
	.industries-slider-wrapper .slick-dots,
	.btn-hero-primary,
	.btn-hero-secondary,
	.btn-cta-primary {
		display: none;
	}

	.section-space {
		padding: 20px 0;
		page-break-inside: avoid;
	}
}
/* Desktop: show tabs, hide accordion */
/* .features-tabs-nav,
.features-tab-content {
display: block;
} */

.features-accordion {
	display: none;
}
.features-accordion .accordion-button::after {
  filter: invert(1);
}
@media(max-width:1320px){
	.features-tabs-nav .nav-link{
		font-size: 13px;
		padding: 8px;
	}
}
/* Mobile: hide tabs, show accordion */
@media (max-width: 1024px) {
	.features-tabs-nav,
	.features-tab-content {
		display: none;
	}

	.features-accordion {
		display: block;
	}
}

