:root {
	--primary-blue: #1e4a72;
	--secondary-blue: #2d5aa0;
	--accent-orange: #ff6b35;
	--accent-orange-text: #ff571a;
	--light-gray: #f8f9fa;
	--dark-text: #2c3e50;
	--bg-dark: #0f172a;
	--accent-color: #10b981;
	--text-light: #d1e3ff;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	/*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
	line-height: 1.6;
	color: var(--dark-text);
}

/*nav menu css starts*/

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  color: rgb(255, 206, 16);
}
.navbar {
	background: linear-gradient(135deg, hsl(209.1, 40.8%, 45.7%), hsl(198 74% 52%));
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	width: 100%;
	z-index: 1000;
	position: absolute;
}

.navbar-brand img {
	height: 50px;
}

.nav-link {
	color: #fff !important;
	font-size: 17px;
}

.navbar-nav {
	margin-right: 30px;
}

.nav-item {
	margin: 0 5px;
}
.navbar-toggler-icon{
    filter: brightness(100);
}
.navbar-toggler {
	border: 0px solid #fff !important;
	color:#fff;
}

.navbar-toggler:focus {
	box-shadow: none !important;
	color:#fff;
	border:none;
}

.dropdown-menu {
	border: 0px solid #fff;
	width: 270px;
}

.dropdown-menu li a {
	border-bottom: 1px solid #dadada;
}

.dropdown-menu li a:hover {
	background: #e8f6ff;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
	padding-top: 0;
	padding-bottom: 0;
}
.dropdown-item {
  white-space: normal !important;
 }
/*nav menu css ends*/
/* Hero Section */
.hero-section {
	background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
	color: white;
	padding: 130px 0 30px;
	position: relative;
	overflow: hidden;
}

.navbar-expand-lg .navbar-collapse {
	justify-content: right;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(/images/hero-bg.webp) no-repeat;
	opacity: 0.3;
}

.hero-content {
	position: relative;
	z-index: 2;
}

.retention-badge {
	background: rgba(255, 107, 53, 0.2);
	border: 1px solid var(--accent-orange);
	border-radius: 20px;
	padding: 8px 16px;
	display: inline-block;
	margin-bottom: 30px;
	font-size: 14px;
}

.dropdown-item {
	white-space: normal;
	border-radius: 6px;
}

.retention-badge i {
	color: var(--accent-orange);
	margin-right: 8px;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
}

.hero-subtitle {
	color: var(--accent-orange-text);
	font-size: 3.5rem;
	font-weight: 700;
}

.hero-description {
	font-size: 1.1rem;
	margin-bottom: 1px;
	opacity: 0.9;
	max-width: 600px;
}

.btn-get-started {
	background: var(--accent-orange);
	border: none;
	padding: 15px 30px;
	font-weight: 600;
	border-radius: 5px;
	margin-right: 15px;
}

.btn-get-started:hover {
	background: #e55a2b;
	transform: translateY(-2px);
	transition: all 0.3s ease;
}

.input-email {
	padding: 15px 20px;
	border: none;
	border-radius: 5px;
	width: 250px;
	display: inline-block;
}

/* Stats Section */
.stats-section {
	margin-top: 0;
	color: white;
	padding: 0;
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #23649b 0%, #24699f 100%);
}

.stat-item {
	text-align: center;
	padding: 20px;
}

.stat-icon {
	font-size: 2rem;
	color: var(--accent-orange);
	margin-bottom: 10px;
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 5px;
}

.stat-label {
	font-size: 1rem;
	opacity: 0.8;
}

/* Trusted Section */
.trusted-section {
	background: var(--light-gray);
	padding:40px 0 20px;
	text-align: center;
}

.trusted-title {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 15px;
	color: var(--dark-text);
}

.trusted-subtitle {
	color: #6c757d;
}

.company-logo-block {
	text-align: center;
}

.company-logo {
	display: inline-block;
	margin: 5px 10px 20px;
}

.trusted-section img {
	height: 51px;
}

/*.company-logos {	display: flex;	justify-content: center;	align-items: center;	flex-wrap: wrap;	gap: 40px;	margin-bottom: 30px;}.company-logo {	width: 80px;	height: 80px;	border-radius: 10px;	display: flex;	align-items: center;	justify-content: center;	font-weight: bold;	color: white;	font-size: 14px;	text-align: center;}*/
/* Solutions Section */
.solutions-section {
	padding: 80px 0;
	text-align: center;
}

.section-badge {
	background: rgba(45, 90, 160, 0.1);
	color: var(--secondary-blue);
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
	display: inline-block;
	margin-bottom: 30px;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--dark-text);
}

.section-subtitle {
	color: var(--secondary-blue);
}

.section-description {
	color: #6c757d;
	margin-bottom: 60px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.solution-card {
	background: white;
	border-radius: 20px;
	padding: 30px;
	text-align: left;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	height: 100%;
	transition: all 0.3s ease;
	border: 1px solid #f0f0f0;
}

.solution-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.solution-icon {
	width: 70px;
	height: 70px;
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
	font-size: 28px;
	color: white;
	position: relative;
}

.solution-icon::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 15px;
	background: inherit;
	opacity: 0.1;
	transform: scale(1.2);
	z-index: -1;
}

.solution-category {
	color: var(--accent-orange);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 12px;
}

.solution-title {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 18px;
	color: var(--dark-text);
	line-height: 1.3;
}

.solution-description {
	color: #6c757d;
	margin-bottom: 25px;
	font-size: 15px;
	line-height: 1.6;
}

.read-more-btn {
	color: var(--secondary-blue);
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	transition: all 0.3s ease;
}

.read-more-btn:hover {
	color: var(--primary-blue);
	transform: translateX(3px);
}

.read-more-btn i {
	font-size: 12px;
	transition: transform 0.3s ease;
}

.read-more-btn:hover i {
	transform: translateX(3px);
}

/* Operations Section */
.operations-section {
	background: var(--light-gray);
	padding: 80px 0;
}

.operations-title {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--dark-text);
}

.operations-subtitle {
	color: var(--secondary-blue);
}

.operations-description {
	color: #6c757d;
	margin-bottom: 30px;
}

.feature-list {
	list-style: none;
	padding: 0;
}

.feature-list li {
	margin-bottom: 15px;
	position: relative;
	padding-left: 25px;
	color: #6c757d;
}

.feature-list li::before {
	content: '•';
	color: var(--accent-orange);
	font-weight: bold;
	position: absolute;
	left: 0;
}

.custom-software-card {
	background: var(--secondary-blue);
	color: white;
	border-radius: 15px;
	padding: 40px;
}

.custom-software-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 20px;
}

.custom-software-description {
	margin-bottom: 30px;
	opacity: 0.9;
}

.seamless-api-btn {
	background: var(--accent-orange);
	border: none;
	padding: 12px 24px;
	border-radius: 5px;
	color: white;
	text-decoration: none;
	display: inline-block;
	font-weight: 600;
}
.accordion-body{
	text-align:left;
}
/* Visibility Section */
.visibility-section {
	padding: 80px 0;
}

.visibility-badge {
	background: rgba(255, 107, 53, 0.1);
	color: var(--accent-orange);
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
	display: inline-block;
	margin-bottom: 30px;
}

.visibility-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--dark-text);
}

.visibility-subtitle {
	color: var(--secondary-blue);
}

.industries-title {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 15px;
	margin-top: 30px;
	color: var(--dark-text);
}

.metric-card {
	text-align: center;
	padding: 30px 20px;
	background: white;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	margin-bottom: 20px;
}

.metric-icon {
	font-size: 2rem;
	color: var(--accent-orange);
	margin-bottom: 15px;
}

.metric-value {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 5px;
	color: var(--dark-text);
}

.metric-label {
	color: #6c757d;
	font-size: 14px;
}

/* CTA Section */
.cta-section {
	background: var(--secondary-blue);
	color: white;
	padding: 80px 0;
	text-align: center;
}

.cta-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 20px;
}

.cta-description {
	margin-bottom: 40px;
	opacity: 0.9;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.btn-schedule {
	background: var(--accent-orange);
	border: none;
	padding: 15px 30px;
	font-weight: 600;
	border-radius: 5px;
	margin-right: 15px;
}

.cta-input {
	padding: 15px 20px;
	border: none;
	border-radius: 5px;
	width: 250px;
}

.pilot-email-input {
	background: #fff;
	border-radius: 5px;
	border: 1px solid #fff;
	height: 30px;
	font-size: 15px;
	padding: 5px 5px 7px;
	width: 20%;
}

.btn-call-now {
	color: #fff;
	height: 32px;
	display: inline-block;
	border-radius: 5px;
	margin-right: 20px;
	color: #fff;
	font-weight: bold;
}

.pilot-stat {
	display: inline-block;
	margin: 10px;
}

.pilot-badge {
	margin-bottom: 20px;
	font-weight: 600;
}

/* About Section */
.about-section {
	padding: 80px 0;
	background: var(--light-gray);
}

.about-badge {
	background: rgba(45, 90, 160, 0.1);
	color: var(--secondary-blue);
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
	display: inline-block;
	margin-bottom: 30px;
}

.about-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--dark-text);
	line-height: 1.2;
}

.about-subtitle {
	color: var(--secondary-blue);
}

.about-description {
	color: #6c757d;
	margin-bottom: 30px;
	line-height: 1.7;
}

.about-highlight {
	font-weight: 700;
	color: var(--dark-text);
}

.about-buttons {
	margin-bottom: 50px;
}

.btn-learn-more {
	background: var(--secondary-blue);
	border: none;
	color: white;
	padding: 15px 30px;
	border-radius: 8px;
	font-weight: 600;
	margin-right: 20px;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
}

.btn-learn-more:hover {
	background: var(--primary-blue);
	transform: translateY(-2px);
	color: white;
}

.btn-pilot {
	background: transparent;
	border: 2px solid var(--secondary-blue);
	color: var(--secondary-blue);
	padding: 13px 30px;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
}

.btn-pilot:hover {
	background: var(--secondary-blue);
	color: white;
}

.pilot-card {
	background: var(--secondary-blue);
	border-radius: 20px;
	padding: 40px;
	color: white;
	text-align: center;
}

.pilot-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 20px;
}

.pilot-description {
	margin-bottom: 30px;
	opacity: 0.9;
	line-height: 1.6;
}

.btn-call {
	background: var(--accent-orange);
	border: none;
	color: white;
	padding: 15px 25px;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
}

.btn-call:hover {
	background: #e55a2b;
	color: white;
	transform: translateY(-2px);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	margin-bottom: 60px;
}

.feature-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.feature-icon {
	width: 60px;
	height: 60px;
	background: rgba(45, 90, 160, 0.1);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: var(--secondary-blue);
	flex-shrink: 0;
}

.feature-content h4 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--dark-text);
}

.feature-content p {
	color: #6c757d;
	margin: 0;
	line-height: 1.6;
}

.founder-section {
	text-align: center;
	padding: 40px 0;
}

.founder-avatar {
	width: 120px;
	height: 120px;
	background: var(--secondary-blue);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	font-weight: 700;
	color: white;
	margin: 0 auto 20px;
}

.founder-name {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--dark-text);
	margin-bottom: 5px;
}

.founder-title {
	color: var(--secondary-blue);
	font-weight: 600;
	margin-bottom: 20px;
}

.founder-bio {
	color: #6c757d;
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.7;
}

.testimonials-section {
	background: var(--light-gray);
	padding: 80px 0;
	text-align: center;
}

.testimonials-badge {
	background: rgba(255, 107, 53, 0.1);
	color: var(--accent-orange);
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
	display: inline-block;
	margin-bottom: 30px;
}

.testimonials-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--dark-text);
}

.testimonials-subtitle {
	color: var(--secondary-blue);
}

.testimonials-description {
	color: #6c757d;
	margin-bottom: 60px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.testimonial-card {
	background: white;
	border-radius: 20px;
	padding: 30px;
	text-align: left;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	height: 100%;
	position: relative;
	margin-bottom: 30px;
}

.testimonial-stars {
	color: var(--accent-orange);
	font-size: 18px;
	margin-bottom: 20px;
}

.testimonial-text {
	color: #6c757d;
	font-style: italic;
	line-height: 1.6;
	margin-bottom: 25px;
	position: relative;
}

/*.testimonial-text::before {	content: '"';	font-size: 4rem;	color: #e9ecef;	position: absolute;	top: -10px;	left: -10px;	font-family: Georgia, serif;}.testimonial-text::after {	content: '"';	font-size: 4rem;	color: #e9ecef;	position: absolute;	bottom: -30px;	right: 10px;	font-family: Georgia, serif;}*/
.testimonial-author {
	font-weight: 700;
	color: var(--dark-text);
	margin-bottom: 5px;
}

.testimonial-company {
	color: var(--secondary-blue);
	font-size: 14px;
}

.testimonial-quote-icon {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 2rem;
	color: #e9ecef;
}

.stats-bottom-section {
	padding: 60px 0;
	text-align: center;
}

.stats-bottom-row {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 100px;
	flex-wrap: wrap;
}

.stat-bottom-item {
	text-align: center;
}

.stat-bottom-number {
	font-size: 4rem;
	font-weight: 700;
	color: var(--secondary-blue);
	margin-bottom: 10px;
	line-height: 1;
}

.stat-bottom-label {
	color: #6c757d;
	font-size: 1rem;
}

.contact-section {
	background: var(--light-gray);
	padding: 80px 0;
	text-align: center;
}

.contact-badge {
	background: rgba(255, 107, 53, 0.1);
	color: var(--accent-orange);
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
	display: inline-block;
	margin-bottom: 30px;
}

.cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.contact-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.fade-in-up {
	animation: fadeInUp 0.6s ease-out;
}

.contact-method-card {
	background: white;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: var(--shadow-sm);
	/*border: 1px solid var(--border-color);*/
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.contact-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--dark-text);
}

.contact-subtitle {
	color: var(--secondary-blue);
}

.contact-description {
	color: #6c757d;
	margin-bottom: 60px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.testimonial-card {
	background: white;
	border-radius: 20px;
	padding: 30px;
	text-align: left;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	height: 100%;
	position: relative;
	margin-bottom: 30px;
}

.testimonial-stars {
	color: var(--accent-orange);
	font-size: 18px;
	margin-bottom: 20px;
}

.testimonial-text {
	color: #6c757d;
	font-style: italic;
	line-height: 1.6;
	margin-bottom: 25px;
	position: relative;
}

.testimonial-author {
	font-weight: 700;
	color: var(--dark-text);
	margin-bottom: 5px;
}

.testimonial-company {
	color: var(--secondary-blue);
	font-size: 14px;
}

.testimonial-quote-icon {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 2rem;
	color: #e9ecef;
}
/*client carousel start*/
.testimonial-card-box {
      box-shadow: 0 0 10px rgba(0,0,0,0.08);
      border: 1px solid #eee;
      padding: 20px;
      border-radius: 10px;
      height: 100%;
      position: relative;
      background-color: #fff;
	  text-align: left;
    }

    .testimonial-rating {
      color: #f39c12;
      font-size: 1.2rem;
    }

  

    .quote-icon {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 2rem;
      color: #ccc;
    }

    /* Controls styling and positioning */
    #testimonialCarousel .carousel-control-prev,
    #testimonialCarousel .carousel-control-next {
      width: 5%;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
    }

    #testimonialCarousel .carousel-control-prev {
      left: -30px;
    }

    #testimonialCarousel .carousel-control-next {
      right: -30px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-color: #f96c32;
      border-radius: 50%;
      padding: 10px;
    }

    .separator {
      height: 1px;
      background-color: #ddd;
      width: 100%;
    }
.carousel-control-prev-icon, .carousel-control-next-icon {
  background-size: 60%;
}
    @media (max-width: 768px) {
      #testimonialCarousel .carousel-control-prev,
      #testimonialCarousel .carousel-control-next {
        display: none;
      }
    }
/*client carousel end*/
/* Footer */
.footer {
	background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
	color: white;
	padding: 3rem 0 1rem;
}

.footer-section {
	position: relative;
}

.footer-section h5 {
	color: #ff6b35;
	padding-bottom: 10px;
	display: block;
}

.footer-section h5::after {
	border-bottom: 1px solid #ff6b35;
	content: " ";
	position: absolute;
	width: 60px;
	height: 4px;
	left: 1px;
	right: 0;
	top: 27px;
	bottom: 0;
}

.footer-cta h5 {
	color: #ff6b35;
	border-bottom: 1px solid #ff6b35 !important;
	padding-bottom: 10px;
	display: inline-block;
}

.footer-cta a {
	color: var(--text-light);
}

.footer-cta a:hover {
	color: var(--light-gray);
}

.footer-links {
	padding-left: 0rem;
	list-style-type: none;
	margin-top: 20px;
}

.footer-links li {
	margin-bottom: 10px;
	background: url(/images/right-arrow-gt.webp) no-repeat left 6px;
	padding-left: 20px;
	line-height: 10px !important;
	font-size: 15px;
	background-size: 9%;
}

.footer-logo img {
	height: 45px;
}

.footer-links-bottom a {
	color: var(--text-light);
	margin-left: 5px;
	margin-right: 5px;
	text-decoration: none;
}

.footer-links-bottom a:hover {
	color: var(--light-gray);
	text-decoration: underline;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-section h3 {
	margin-bottom: 1rem;
	color: var(--accent-color);
}

.footer-section p,
.footer-section a {
	color: var(--text-light);
	text-decoration: none;
	line-height: 1.6;
}

.footer-section a:hover {
	color: white;
}

.footer-contact-info a {
	color: var(--text-light);
	text-decoration: none;
}

.footer-contact-info a:hover {
	color: #fff;
	text-decoration: none;
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid #8c949f;
	color: var(--text-light);
}
/*logo carousel start*/
.logo-scroller {
      overflow: hidden;
      white-space: nowrap;
      position: relative;
      padding: 20px 0;
    }

    .logo-track {
      display: inline-block;
      white-space: nowrap;
      animation: scroll-left 20s linear infinite;
    }

    .logo-track img {
      height: 80px;
      margin: 0 30px;
      vertical-align: middle;
    }

    @keyframes scroll-left {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
/*logo carousel end*/
/*service page starts*/
.contact-heading{
	text-align:left;
}
.hero-section-inner-page{
	background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
	color: white;
	padding: 110px 0 30px;
	position: relative;
	overflow: hidden;
}
.inner-page-text{
	width:80%;
	margin:0 auto;
	text-align:center;
}
.inner-page-text-left {
margin: 0 auto;
text-align: left;
}
.section-white{
background:#fff;
}
.inner-page-img{
	border: 1px solid #ccc;
  padding: 1px;
  border-radius: 10px;
  box-shadow: 0 0 5px 5px rgba(0,0,0,.1);
}
.trusted-section-inner-page {
  background: var(--light-gray);
  padding: 50px 0 30px;
  text-align: center;
}
.trusted-section-inner-page img {
  height: 51px;
}
.hero-content {
	position: relative;
	z-index: 2;
}
.hero-section-inner-page::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(/images/hero-bg.webp) no-repeat;
	opacity: 0.3;
}
.testimonial-section {
background: #fff;
  padding: 40px 0;
  text-align: center;
}
.service-card{
background: white;
  border-radius: 20px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #eeeded	;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-block .service-child:nth-child(2n+1) .service-card{
	background: #f5faff;
  
}
.service-block .service-child:nth-child(2n) .service-card{
	background: #ebf5ff;
}
.complience-tracking-section {
background: var(--light-gray);
padding: 40px 0;
text-align: center;
}
.complience-tracking-section-two {
background: #fff;
padding: 40px 0;
text-align: center;
}
.text-left{
	text-align:left
}
/*service page end*/
@media (max-width: 998px) {
	.nav-item {
	  margin: 0 4px;
	}
}
@media (max-width: 991px) {
	.hero-section-inner-page{
	    padding: 40px 0 30px !important;
	}
	.dropdown-item:focus, .dropdown-item:hover{
		background-color: transparent;
	}
	.navbar-expand-lg .navbar-nav .dropdown-menu{
		width:100%;
		background: transparent;
    border: 0;
	}
	.dropdown-menu li a {
	  border-bottom: 0px solid #dadada;
	  color: #f2f2f2;
	}
	.dropdown-menu li a:hover {
	  background: transparent;
	  color: #fff;
	}
	.dropdown-item.active, .dropdown-item:active{
		background-color: transparent;
	}
	.footer-links li{
		background-size: 2%;
	}
	.hero-section {
		padding: 110px 0 30px;
	}
}
@media (max-width: 768px) {
	.testimonial-card{
		height:auto;
		padding: 20px 20px 10px;
		margin-bottom: 5px;
	}
	.resp-img{
		max-width:100%;
	}
	.software-list-block {
	  text-align: left;
	}
	.hero-title {
		font-size: 3rem;
	}
	.features-grid {
	  grid-template-columns: repeat(1, 1fr);
	}
	.contact-description {
	  font-size: 24px;
	}
	.container-fluid {
		display: block;
	}

	.dropdown-menu {
		background-color: transparent;
	}

	.hero-title,
	.hero-subtitle {
		font-size: 2.5rem;
	}

	.input-email,
	.cta-input {
		width: 100%;
		margin-top: 15px;
	}

	.btn-get-started,
	.btn-schedule {
		width: 100%;
		margin-right: 0;
		margin-bottom: 15px;
	}

	.company-logos {
		gap: 20px;
	}

	.company-logo {
		width: 60px;
		height: 60px;
		font-size: 12px;
	}

	.stats-bottom-row {
		gap: 40px;
	}

	.stat-bottom-number {
		font-size: 2rem;
	}

	.testimonials-title {
		font-size: 1rem;
	}

	.contact-section {
		font-size: 2rem;
	}
}

@media (max-width: 767px) {
  .footer-links li{
		background-size: 3%;
	}  
}
@media (max-width: 480px) {
  .footer-links li{
		background-size: 4%;
	}  
}