body {
	font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	margin: 0;
	padding: 0;
}

@supports ((-webkit-backdrop-filter: var(--tw)) or (backdrop-filter: var(--tw))) {
	.supports-\[backdrop-filter\]\:bg-background\/60 {
		background-color: hsl(var(--background) / .6);
	}
}

.backdrop-blur {
	--tw-backdrop-blur: blur(8px);
	-webkit-backdrop-filter: var(--tw-backdrop-blur)
    var(--tw-backdrop-brightness)
    var(--tw-backdrop-contrast)
    var(--tw-backdrop-grayscale)
    var(--tw-backdrop-hue-rotate)
    var(--tw-backdrop-invert)
    var(--tw-backdrop-opacity)
    var(--tw-backdrop-saturate)
    var(--tw-backdrop-sepia);
	backdrop-filter: var(--tw-backdrop-blur)
    var(--tw-backdrop-brightness)
    var(--tw-backdrop-contrast)
    var(--tw-backdrop-grayscale)
    var(--tw-backdrop-hue-rotate)
    var(--tw-backdrop-invert)
    var(--tw-backdrop-opacity)
    var(--tw-backdrop-saturate)
    var(--tw-backdrop-sepia);
}

/* ====== Site Header with Blur ====== */

.py-4 {
	padding-top: 1rem !important;
	padding-bottom: 1rem !important;
}


/* ✅ Modal Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
.modal-overlay.active {
  visibility: visible;
  opacity: 1;
}

/* ✅ Modal Box */
.modal-content {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  width: 90%;
  max-width: 900px;
  position: relative;
  animation: fadeInUp 0.4s ease;
  overflow-y: auto;
  max-height: 90vh;
}

/* ✅ Close Button */
.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #333;
  cursor: pointer;
}

/* ✅ Modal Animation */
@keyframes fadeInUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ✅ Features Styles */
.features-container {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 12px;
  padding: 1.5rem;
  font-family: system-ui, sans-serif;
  color: #222;
}

.features-container h3 {
  font-size: 1.6rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: rgba(0,0,0,0.75);
  transition: color 0.3s ease;
}

.icon {
  width: 18px;
  height: 18px;
  stroke: #f5b400;
  margin-right: 0.6rem;
  transition: all 0.3s ease;
}

/* Hover effects */
.feature-item:hover .icon {
  stroke: #ffcc00;
  transform: scale(1.25);
  filter: drop-shadow(0 0 6px rgba(255,204,0,0.6));
}
.feature-item:hover {
  color: #111;
}

/* Responsive */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .modal-content {
    padding: 1.2rem;
  }
}

.hero-section {
	position: relative;
	min-height: 100vh;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 0;
	color: #fff;
	overflow: hidden;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: #00000080;
	z-index: 1;
}

.hero-content {
	position: relative;
	margin-top: 35px;
	z-index: 2;
	max-width: 896px;
	text-align: left;
}

.hero-content h1 {
	font-size: 72px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 24px;
}

.hero-content h1 span,
.hero-content h1 strong {
	color: #ffbf00;
	font-weight: inherit;
}

.hero-content p {
	font-size: 24px;
	line-height: 32px;
	font-weight: 400;
	max-width: 768px;
	color: #ffffffe6;
}

.hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 48px;
}

.banner_btn {
	border: 2px solid #fff;
	border-radius: 6px;
	color: #fff;
	font-weight: 600;
	transition: all 0.3s ease;
}

.banner_btn:hover {
	background: #fff;
	color: #000;
}

.gap-8 {
	gap: 2rem;
}

.grid {
	display: grid;
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat( 3 , minmax( 0 , 1fr ) );
}


.hero-stats div h3 {
	font-size: 30px;
	line-height: 36px;
	font-weight: 700;
	margin-bottom: 0;
}

.hero-stats div p {
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	color: #fffc;
}
/* Section base */
.bpo-section {
	background: #fff;
	color: #111;
	text-align: center;
}
p:last-of-type{
	margin-bottom: 0;
}

/* Headings */
.bpo-section h2 {
	font-size: 36px;
	line-height: 40px;
	font-weight: 700;
	margin-bottom: 24px;
}

.bpo-section h2 span,
.bpo-section h2 strong {
	color: #ffbf00;
	font-weight: inherit;
}

.text_lg p {
	font-size: 20px;
	line-height: 28px;
	color: #000c;
}

/* Grid Layout */
.bpo-grid {
	display: grid;
	grid-template-columns: repeat(3 , minmax(0, 1fr));
	gap: 32px;
}

/* Cards */
.bpo-card {
	border: 1px solid #000;
	border-radius: 6px;
	padding: 24px;
	text-align: center;
	background: #fff;
	transition: all 0.3s ease;
}

.bpo-card:hover {
	box-shadow: 0 0 40px hsl(45 100% 50% / .4);
}

/* Icons */
.bpo-icon {
	width: 64px;
	height: 64px;
	border: 2px solid #000;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 21px;
}

.bpo-icon svg {
	height: 32px;
	width: 32px;
}

/* Text */
.bpo-card h3 {
	font-size: 24px;
	line-height: 32px;
  	font-weight: 600;
	margin-bottom: 15px;
	color: #000;
}

.bpo-card p {
	color: #000000b3;
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	margin-bottom: 24px;
}

/* List */
.bpo-card ul {
	list-style: none;
	padding: 0;
	margin: 20px 0;
}

.bpo-card ul li {
	font-size: 16px;
	line-height: 24px;
	text-align: left;
	font-weight: 400;
	color: #000;
	margin-bottom: 10px;
	position: relative;
	padding-left: 18px;
}

.bpo-card ul li::before {
	content: "";
	width: 8px;
	height: 8px;
	background: #111;
	border-radius: 30px;
	position: absolute;
	left: 0;
	top: 8px;
}

/* Buttons */
.bpo-buttons {
	display: grid;
	grid-template-columns: repeat(2 , 1fr);
	gap: 10px;
}
.bpo-buttons .site_btn{
	width: 100%;
	padding: 8px 16px;
}

/* Base Section */
.callcenter-section {
	border-top: 1px solid #000;
	color: #111;
}

/* Grid Layout */
.callcenter-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 48px;
}

/* Left Text Side */
.callcenter-text h2 {
	font-size: 48px;
	line-height: 1;
	color: #000;
	font-weight: 700;
	margin-bottom: 24px;
}

.callcenter-text h2 span,
.callcenter-text h2 strong {
	color: #ffbf00;
	font-weight: inherit;
}

.callcenter-text p {
	font-size: 20px;
	color: #000c;
	margin-bottom: 32px;
	line-height: 28px;
	font-weight: 400;
}

/* Stats Grid */
.stats-grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
	margin-bottom: 40px;
}

.stats-grid-2 h3 {
	font-size: 30px;
	line-height: 36px;
	font-weight: 700;
	color: #000;
	margin-bottom: 8px;
}

.stats-grid-2 p {
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	color: #000c;
	margin-bottom: 0;
}

/* Button */
.btn-yellow {
	display: inline-block;
	font-size: 14px;
	line-height: 20px;
	background: #ffbf00;
	color: #111;
	font-weight: 500;
	padding: 12px 32px;
	border-radius: 6px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-yellow:hover {
	background: #ffbf00e6;
}

/* Image */
.callcenter-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    max-height: 660px;
    object-fit: cover;
}

.callcenter-image img:hover {
	box-shadow: 0 0 25px rgba(249, 185, 19, 0.4);
}

.automotive-solutions {
	padding: 0 16px 80px;
}

.automotive_content h3 {
	font-size: 30px;
	font-weight: 700;
	line-height: 36px;
	text-align: center;
	color: #000;
}

.automotive_content h3 span,
.automotive_content h3 strong {
	color: #f9b913;
	font-weight: inherit;
}

/* Grid Layout */
.solutions-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

/* Card */
.solution-card {
	border: 1px solid #000;
	border-radius: 10px;
	background: #fff;
	text-align: center;
	transition: all 0.3s ease;
	padding: 32px;
	box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.solution-card:hover {
	box-shadow: 0 0 40px hsl(45 100% 50% / .4);
}

.solution-content h4 {
	font-size: 20px;
	line-height: 28px;
	font-weight: 600;
	color: #000;
	margin-bottom: 16px;
}

.solution-content p {
	color: #000c;
	font-size: 16px;
	line-height: 28px;
	font-weight: 400;
	margin: 0;
}

.solution-icon {
	margin-bottom: 16px;
}

.solution-icon img {
	font-size: 36px;
	object-fit: contain;
}
.solution-icon svg{
	width: 36px;
	height: 36px;
}
/* ===== Operations Section ===== */

.operations-container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
	align-items: center;
	max-width: 1400px;
      /* center container */
	margin: 0 auto;
}

.operations-image img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.15);
}

/* ===== Text Section ===== */
.operations-content h3 {
	font-size: 36px;
	line-height: 40px;
	font-weight: 700;
	color: #000;
	margin-bottom: 24px;
}

.operations-content h3 span,
.operations-content h3 em,
.operations-content h3 strong {
	font-weight: inherit;
	color: #ffbf00;
	
}

.operations-content p {
	font-size: 18px;
	color: #000c;
	line-height: 28px;
	font-weight: 400;
	margin-bottom: 24px;
}

/* ===== List ===== */
.operations-list {
	list-style: none;
	margin-bottom: 35px;
	padding: 0;
}

.operations-list li {
	display: flex;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	color: #000c;
	margin-bottom: 12px;
}

.operations-list li em {
	color: #ffbf00;
	font-size: 16px;
	margin-right: 12px;
	font-style: normal;
}

.bg-list li span {
	background: #ffbf00;
	color: #000;
	font-weight: 600;
	height: 32px;
	width: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	margin-right: 16px;
	margin-top: 4px;
	flex-shrink: 0;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}
.bg-list li div{
	display: block;
}
.bg-list li h4 {
	width: 100%;
	font-size: 16px;
	line-height: 24px;
	font-weight: 600;
	color: #000;
}
.bg-list li p {
	width: 100%;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	margin-bottom: 0px;
	color: #000c;
}
/* ===== Button ===== */
.operations-btn {
	background: #ffbf00;
	color: #000;
	font-size: 14px;
	font-weight: 20px;
	border: 1px solid #ffbf00;
	padding: 10px 32px;
	border-radius: 6px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

.operations-btn:hover {
	background: #ffbf00e6;
	border-color: #ffbf00e6;
}

/* Base Section */
.global-ai-section {
	background: #fff;
	border-top: 1px solid #000;
	color: #111;
}

/* Grid Layout */
.global-ai-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 48px;
}

.ai-operations-scale {
	text-align: center;
}

/* ====== Header ====== */
.ai-scale-header {
	margin-bottom: 48px;
}

.ai-scale-header h2 {
	font-size: 48px;
	line-height: 1;
  font-weight: 700;
	color: #000;
	margin-bottom: 24px;
}

.ai-scale-header h2 span,
.ai-scale-header h2 strong {
	color: #ffbf00;
	font-weight: inherit;
}

.ai-scale-header p {
	max-width: 768px;
	margin: 0 auto;
	color: #555;
	font-size: 20px;
	line-height: 28px;
}

/* ====== Image Section ====== */
.ai-scale-image-wrapper {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.ai-scale-image-wrapper img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
}

.ai-scale-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, #00000061, transparent);
}

/* ====== Stats Section ====== */
.ai-scale-stats {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0px 24px;
	width: 100%;
	max-width: 1400px;
	padding: 0 32px;
	color: #fff;
}

.ai-stat {
	text-align: center;
}

.ai-stat-number {
	font-size: 30px;
	line-height: 36px;
	font-weight: 700;
	color: #ffbf00;
}

.ai-stat-text {
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
	color: #fff;
}

/* ====== Buttons ====== */
.ai-scale-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
}


/* ====== Responsive ====== */

/* Left Text Side */
.global-ai-text h2 {
	font-size: 48px;
	line-height: 48px;
	color: #000;
	font-weight: 700;
	margin-bottom: 24px;
}

.global-ai-text h2 span,
.global-ai-text h2 strong {
	color: #ffbf00;
	font-weight: inherit;
}

.global-ai-text p {
	font-size: 20px;
	color: #000c;
	margin-bottom: 32px;
	line-height: 28px;
	font-weight: 400;
}


/* Button */
.btn-yellow-2 {
	display: inline-block;
	font-size: 14px;
	line-height: 20px;
	background: #ffbf00;
	color: #111;
	font-weight: 500;
	padding: 12px 32px;
	border-radius: 6px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-yellow-2:hover {
	background: #ffbf00e6;
}

/* Image */
.global-ai-image img {
	width: 100%;
	height: auto;
	border-radius: 8px;
}
.global-ai-image img {
    background: #000000;
    backdrop-filter: blur(6px);
    border-radius: 10px;
    padding: 32px;
}
.global-ai-image img:hover {
	box-shadow: 0 0 25px rgba(249, 185, 19, 0.4);
}
/* ====== Section Wrapper ====== */
.ai-partner-section {
	background: linear-gradient(135deg, #ffbf00, #e69100);
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.ai-partner-card {
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid #000;
	border-radius: 8px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	padding: 70px 40px;
	backdrop-filter: blur(8px);
}

/* ====== Heading & Text ====== */
.ai-partner-card h2 {
	font-size: 48px;
	line-height: 1;
	font-weight: 700;
	color: #000;
	margin-bottom: 24px;
}

.ai-partner-card p {
	font-size: 20px;
	color: #000c;
	max-width: 768px;
	margin: 0 auto 32px;
	line-height: 28px;
	font-weight: 400;
}

/* ====== Buttons ====== */
.ai-partner-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
	margin-bottom: 25px;
}

/* ====== Footer Text ====== */
.ai-partner-note {
	font-size: 0.95rem;
	color: #555;
	margin-top: 25px;
}
footer.site-footer {
  background: #000;
  color: #fff;
  padding: 48px 0;
}

.footer-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  border-bottom: 1px solid #333;
  padding-bottom: 40px;
}

.footer-col h5 {
  font-size: 16px;
  margin-bottom: 19px;
  font-weight: 600;
}
.footer-menu ul{
  padding-left: 0px;

}
.footer-menu ul li{
  text-decoration: none;
  list-style-type: none;
  margin-top: 8px;
}
.footer-col p,
.footer-col a,
.footer-col ul,
.footer-col ul li {
  color: #ccc;
  text-decoration: none;
  list-style-type: none;
  font-size: 16px;
  line-height: 24px;
  padding-left: 0px;
  font-weight: 400;
  color: #fffc;
}
.footer-col ul{
	margin: 0;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 8px;
}

.footer-col a:hover {
  color: #ffb400;
}


.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 13px;
  color: #fff9;
}
.footer-bottom p{
	margin-top: 0;
	margin-bottom: 0;
	margin: 0;
	padding: 0;
	font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.footer-bottom a {
  color: #fff9;
  margin: 0 5px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.footer-bottom a:hover {
  color: #ffb400;
}

/*==============================Insuranxe claime page===============================*/


.Insurance-hero-section {
	position: relative;
	min-height: 70vh;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	overflow: hidden;
}

.Insurance-hero-overlay {
	position: absolute;
	inset: 0;
	background: #00000080;
	z-index: 1;
}

.Insurance-hero-content {
	position: relative;
	margin-top: 48px;
	z-index: 2;
	max-width: 896px;
	text-align: left;
}

.Insurance-hero-content h1 {
	font-size: 60px;
	font-weight: 700;
	line-height: 60px;
	margin-bottom: 24px;
}

.Insurance-hero-content h1 span,
.Insurance-hero-content h1 strong {
	color: #ffbf00;
	font-weight: inherit;
}

.Insurance-hero-content p {
	font-size: 24px;
	line-height: 32px;
	font-weight: 400;
	max-width: 768px;
	color: #ffffffe6;
	margin-bottom: 32px;
}

.Insurance-hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}
.gap-8 {
	gap: 2rem;
}

.services-section {
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-box {
  border: 1px solid #000;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  padding: 32px;

}

.service-box:hover {
  box-shadow: 0 0 40px hsl(45 100% 50% / .4);
}

.service-box svg {
  width: 48px;
  height: 48px;
  object-fit: cover;
  margin-bottom: 16px;
  color: #ffbf00!important;

}
.service-box:hover svg {
  transform: scale(1.15);
}

.service-box h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
}
.service-box p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #000c;
  margin-bottom: 48px;
}
.service-box ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
  display: inline-block;
}

.service-box ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  color: #333;
  font-size: 15px;
}

.service-box ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23ffbf00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21.801 10A10 10 0 1 1 17 3.335'/%3E%3Cpath d='m9 11 3 3L22 4'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.towning-service-box {
  border: 1px solid #000;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  padding: 32px;

}

.towning-service-box:hover {
  box-shadow: 0 0 40px hsl(45 100% 50% / .4);
}

.towning-service-box svg {
  width: 48px;
  height: 48px;
  object-fit: cover;
  margin-bottom: 16px;
  color: #ffbf00!important;

}
.towning-service-box:hover svg {
  transform: scale(1.15);
}

.towning-service-box h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
}
.towning-service-box p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #000c;
  margin-bottom: 48px;
}
.towning-service-box ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
  display: inline-block;
}

.towning-service-box ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  color: #333;
  font-size: 15px;
}
.towning-service-box ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23ffbf00%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%2210%22%3E%3C%2Fcircle%3E%3Cpolyline%20points%3D%2212%206%2012%2012%2016%2014%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E") no-repeat center;
  background-size: contain;
}
.bpo-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.insurance-section {
  background:linear-gradient(135deg, #ffbf00, #e69100);
}
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(2 , 1fr);
  gap: 48px;
}
.insurance-left{
	margin-top: 16px;
}
.insurance-left h2 {
  font-size: 36px;
  color: #000;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 24px;
}

.insurance-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
    button#menuToggle {
        border-radius: 8px;
        background-color: #ffbf00!important;
    }
.insurance-stats div {
  text-align: center;
}

.insurance-stats h3 {
  font-size: 30px;
  line-height: 36px;
  color: #000;
  font-weight: 700;
  margin-bottom: 8px;
}

.insurance-stats p {
  color: #333;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}

.insurance-right {
  background: #ffffff8c;
  border-radius: 8px;
  padding: 32px;
  backdrop-filter: blur(6px);
}

.insurance-right h4 {
  font-size: 20px;
  line-height:28px;
  color: #0a0a0a;
  font-weight: 700;
  margin-bottom: 24px;
}

.insurance-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.insurance-right ul li {
  position: relative;
  padding-left: 32px;
  color: #000;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-top: 12px;
}

.insurance-right ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21.801 10A10 10 0 1 1 17 3.335'/%3E%3Cpath d='m9 11 3 3L22 4'/%3E%3C/svg%3E")
    no-repeat center;
  background-size: contain;
}
.towing-hero-section {
	position: relative;
	min-height: 70vh;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 0;
	color: #fff;
	overflow: hidden;
}

.industry-response {
  background: #fbfaf980;
  text-align: center;
}

.industry-response-header h2 {
  font-size: 36px;
  line-height: 40px;
  text-align: center;
  font-weight: 700;
  color: #000;
  margin-bottom: 24px;
}

.industry-response-header h2 span,
.industry-response-header h2 strong {
  color: #ffbf00;
  font-weight: inherit;
}

.industry-response-header p {
  color: #000c;
  font-size: 20px;
  text-align: center;
  line-height: 28px;
}

.industry-response-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.industry-response-box h3 {
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
  color: #ffbf00;
  margin-bottom: 8px;
}

.industry-response-box p {
  font-size: 16px;
  line-height: 20px;
  color: #000c;
  font-weight: 400;
  margin: 0;
}
.features-container {
  background: #0000000d;
  backdrop-filter: blur(6px);
  border-radius: 10px;
  padding: 32px;
}

.features-container h3 {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 26px;
  color: #000;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.town_feature_item svg{
	width: 20px;
	height: 20px;
	stroke: #f5b400;
	flex-shrink: 0;
    transition: all 0.3s ease;
	margin: 0 !important;
}
.town_feature_item {
  display: flex;
  align-items: center;
  font-size: 16px;
  gap: 12px;
  color: #000c;
  line-height: 24px;
  font-weight: 400;
}
  .agentic-section {
  text-align: center;
}

.agentic-header h2 {
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 24px;
}

.agentic-header h2 span,
.agentic-header h2 strong {
  color: #ffbf00;
  font-weight: inherit;
}

.agentic-header p {
  font-size: 20px;
  color: #000c;
  font-weight: 400;
  line-height: 28px;
}

.agentic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.agentic-card {
  border: 1px solid #000;
  border-radius: 8px;
  padding: 32px;
  text-align: left;
  transition: all 0.3s ease;
  background: #fff;
}

.agentic-card:hover {
  box-shadow: 0 0 40px hsl(45 100% 50% / .4);
}

.agentic-icon {
  width: 48px;
  height: 48px;
  background: #ffbf0033;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.agentic-icon svg {
  stroke: #ffbf00;
  width: 24px;
  height: 24px;
  margin: 0 !important;
}

.agentic-card h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
}

.agentic-card p {
  font-size: 16px;
  line-height: 24px;
  color: #000c;
  font-weight: 400;

}

.auto-hero-section {
	position: relative;
	min-height: 70vh;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 0;
	color: #fff;
	overflow: hidden;
}
.service-box-2 {
  border: 1px solid #000;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  padding: 32px;

}

.service-box-2:hover {
  box-shadow: 0 0 40px hsl(45 100% 50% / .4);
}

.service-box-2 svg {
  width: 48px;
  height: 48px;
  object-fit: cover;
  margin-bottom: 16px;
  color: #ffbf00!important;

}
.service-box-2:hover svg {
  transform: scale(1.15);
}

.service-box-2 h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
}
.service-box-2 p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #000c;
  margin-bottom: 48px;
}
.service-box-2 ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
  display: inline-block;
}

.service-box-2 ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  color: #333;
  font-size: 15px;
}

.service-box-2 ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffbf00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 21.73a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73z'/%3E%3Cpath d='M12 22V12'/%3E%3Cpath d='m3.3 7 7.703 4.734a2 2 0 0 0 1.994 0L20.7 7'/%3E%3Cpath d='m7.5 4.27 9 5.15'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.service-box-3 {
  background: #ffffff1a;
  border-radius: 8px;
  color: #fff;
  padding: 32px;
  backdrop-filter: blur(6px);
}
.service-box-3 h4{
	font-size: 20px;
    line-height: 28px;
    color: #000;
    font-weight: 700;
    margin-bottom: 20px;
}
.service-box-3 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-box-3 ul li {
  display: flex;
  align-items: center;
  list-style: none;
  text-decoration: none;
  color: #000;
  opacity: 0.9;
  font-size: 16px;
  margin-bottom: 12px;
  gap: 12px;
}
.service-box-3 ul li:last-child {
  margin-bottom: 0;
}

.aftermarket-box-3 ul li svg {
  color: #fff;
  stroke: #fff;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.service-box-3 ul li:hover svg {
  transform: scale(1.2);
}
.auto-response-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.auto-response-stats ._icon{
	width: 64px;
	height: 64px;
	background-color: #fbfaf94d;
	border-radius: 100px;
	place-content: center;
	margin: 0 auto 16px;
}

.auto-response-stats ._icon svg{
	width: 32px;
	height: 32px;
	color: #ffbf00;
	stroke: #ffbf00;
	margin: 0 !important;
}

.auto-response-box h4 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
}

.auto-response-box p {
  font-size: 14px;
  line-height: 20px;
  color: #000c;
  font-weight: 400;
  margin: 0;
}
/*==============================Contact page===================================*/


/* contact-form */
#StepsForm ._main_icon {
    width: 40px;
    height: 40px;
    background: #ffbf00;
    border-radius: 40px;
    display: grid;
    place-content: center;
	float: left;
	margin-top: 8px;
}
#StepsForm ._main_icon svg{
	width: 20px;
	height: 20px;
	color: #000;
}
#StepsForm .gform_page .gform_page_fields{
	padding: 24px;
}
#StepsForm .head-content{
	text-align: center;
	margin-bottom: 16px;
}
#StepsForm .head-content ._icon svg{
	width: 64px;
	height: 64px;
	color: #ffbf00;
	margin: 0 auto 16px;
}
#StepsForm h2.form_heading,
#StepsForm .head-content h3{
	font-size: 24px;
	line-height: 32px;
	font-weight: 700;
	color: #000;
	margin-bottom: 8px;
}
#StepsForm h2.form_heading{
	margin: 0;
	padding-left: 52px;
}
#StepsForm .head-content p{
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	color: #000000b3;
	margin: 0;
}
#StepsForm .gf_progressbar_wrapper p{
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 0;
	padding-left: 52px;
}
/* ===== Progress Bar ===== */
#StepsForm .gf_progressbar_wrapper{
	padding: 24px;
	background-image: linear-gradient(to right, hsl(45 100% 50% / .1), hsl(45 100% 50% / .05));
	border-bottom: 1px solid #000;
}
#StepsForm .gform_wrapper .gf_progressbar {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  height: 8px;
  clear: both;
  margin: 16px 0 0;
}
#StepsForm .gform_wrapper .gf_progressbar_percentage span {
  display: none;
}

#StepsForm .gform_wrapper .gf_progressbar_percentage {
  background: #ffbf00;
  border-radius: 3.5px 0 0 10.5px;
  transition: width 0.4s ease;
}
/* Labels */
#StepsForm .gform_wrapper .gfield_label {
  font-weight: 500;
  color: #000;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 14px;
}
#gform_fields_1 {
    gap:16px;
}
/* Required asterisk */
#StepsForm .gform_wrapper .gfield_required {
  display: none;
}

/* Inputs, selects, and textareas */
#StepsForm .gform_wrapper input,
#StepsForm .gform_wrapper select,
#StepsForm .gform_wrapper textarea {
  width: 100%;
  border: 1px solid #000;
  border-radius: 6px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #000;
  background: #fff;
  transition: all 0.3s ease;
  box-sizing: border-box;
  padding: 8px 12px;
}

#StepsForm .gform_wrapper input:focus,
#StepsForm .gform_wrapper select:focus,
#StepsForm .gform_wrapper textarea:focus {
  border-color: #ffbf00;
  outline: none;
  box-shadow: 0 0 0 2px rgba(247, 198, 0, 0.2);
}
#StepsForm .gform_wrapper .gfield_error input,
#StepsForm .gform_wrapper .gfield_error select,
#StepsForm .gform_wrapper .gfield_error textarea{
	border-color: #c02b0a;
	box-shadow: 0 0 4px 0px #c02b0a61;
}
#StepsForm .gform_wrapper ::placeholder {
  color: #000;
}
#StepsForm .gform_wrapper input.button{
	color: #000;
	padding: 9px 16px;
	border-radius: 6px;
	gap: 16px;
	margin: 0;
	
	background-color: #ffbf00;
	border-color: #ffbf00;
	width: auto;
	font-weight: 500;
	min-width: 122px;
	text-align: center;
}
#StepsForm .gform_wrapper input.button.gform_previous_button{
	background-color: #fff;
	background: #fff;
	border: 1px solid #000;
}
#StepsForm .gform_wrapper input.button.gform_previous_button:hover,
#StepsForm .gform_wrapper input.button:hover{
	background-color: #ffbf00e6;
	background: #ffbf00e6;
	border-color: #ffbf00e6;
}
#StepsForm #gform_wrapper_1 .gform_page_footer,
#StepsForm #gform_wrapper_1 .gform_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border-top: 1px solid #000;
  margin: 0;
}
#StepsForm #gform_page_1_1 .gform_page_footer {
    justify-content: flex-end;
}
#StepsForm .validation_message {
    display: none;
}
#StepsForm .ginput_container_textarea {
    display: flex;
}
#StepsForm .FormCTA{
	padding: 16px;
	border-radius: 8px;
	background-color: #ffbf000d;
	margin-top: 8px;
	border:1px solid hsl(45 100% 50% / .2);
	box-shadow: 0 1px 2px 0 #0000000d;
	    display: flex;
    align-items: center;
    gap: 12px;
}
#StepsForm ._cta_icon{
	flex: 0 0 auto;
}
#StepsForm ._cta_icon svg {
    width: 32px;
    height: 32px;
    color: #ffbf00;
}
#StepsForm .FormCTA h5{
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: #000;
	margin: 0;
}
#StepsForm .FormCTA p{
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #000000b3;
    margin: 0;
}
/* Previous button icon */
.gform_page_footer .gform_previous_button::before {
  content: url("https://cdn-icons-png.flaticon.com/512/271/271220.png");
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

/* Next button icon */
.gform_page_footer .gform_next_button::after {
  content: url("https://cdn-icons-png.flaticon.com/512/271/271228.png");
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 8px;
}


.gform_wrapper .gfield_validation_message, .gform_wrapper .validation_message{
	border: none !important;
	border-radius: 8px!important;
}
.gform_wrapper.gravity-theme .gform_previous_button.button, 
.gform_wrapper.gravity-theme .gform_save_link.button {
    text-decoration: none;
    -webkit-appearance: none !important;
}

#StepsForm .FormCTA.lastStep {
    display: block;
    text-align: center;
}
#StepsForm .lastStep ._cta_icon svg{
	width: 40px;
	height: 40px;
}
#StepsForm .FormCTA.lastStep h5{
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
	margin: 16px 0 8px;
}
#StepsForm .FormCTA.lastStep p{
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}
.FormCTA.lastStep span {
    padding: 2px 10px;
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    color: #ffbf00;
    background-color: #ffbf0033;
    border-radius: 20px;
    margin: 16px auto 0;
    display: inline-block;
}
.gform_confirmation_message {
    text-align: center;
    font-size: 20px;
    line-height: 28px;
    min-height: 200px;
    place-content: center;
}
#validation_message_1_21 {
    display: block !important;
    padding: 0;
}
#StepsForm .gform_wrapper.gravity-theme .ginput_complex span{
	display: block;
	margin: 0;
}
#StepsForm .gfield_checkbox {
    display: grid;
    grid-template-columns: repeat(2 , 1fr);
    gap: 12px;
}
#StepsForm .gform_wrapper #field_1_11 .gfield_label,
#StepsForm .gform_wrapper #field_1_12 .gfield_label,
#StepsForm .gform_wrapper #field_1_17 .gfield_label {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 16px;
}
#StepsForm .gfield_checkbox .gchoice label {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: #000;
	padding: 12px;
    border-radius: 8px;
    border: 2px solid #000;
	position: relative;
	display: flex;
    align-items: center;
    gap: 12px;
	cursor: pointer;
	    width: 100%;
    max-width: 100%;
}
#StepsForm .gfield_checkbox .gchoice input{
	display: none !important;
}
#StepsForm .gfield_checkbox .gchoice label::before {
	content: '';
    width: 16px;
    height: 16px;
    border:1px solid #ffbf00;
	border-radius: 4px;
	display: inline-block;
	background-repeat: no-repeat;
	background-size: 14px;
	background-position: center;
}
#StepsForm .gfield_checkbox .gchoice input:checked ~ label{
	background-color: #ffbf001a;
	border-color: #ffbf00;
}
#StepsForm .gfield_checkbox .gchoice input:checked ~ label::before {
    background-color: #ffbf00;
	background-image: url('https://automotivebpo.com/wp-content/uploads/2025/11/check.svg');
}

.contact_popup_wrapper {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: 999999;
    background-color: #00000087;
}
.contact_popup_wrapper:not(.open){
    z-index: -1;
    background-color: transparent;
}
.contact_popup_wrapper:not(.open) .FormWrapper{
    bottom: -100%;
}
.FormWrapper{
    height: 90vh;
    background: #fff;
    width: 100%;
    transition: 0.5s all ease;
    position: fixed;
    bottom: 0;
    left: 0;
}
#StepsForm .gform_validation_errors{
    display: none;
}
#StepsForm .gform_body{
    height: calc(90vh - 218px);
    overflow: auto;
}
#StepsForm .gform_body .gform_page_footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    background-color: #fff;
}
.contact_form{
    cursor: pointer;
}
#close_form {
    border: none;
    background: transparent;
    padding: 8px;
    margin: 0;
    position: absolute;
    right: 16px;
    top: 18px;
    display: flex;
    align-items: center;
}
#close_form svg{
    width: 20px;
    height: 20px;
}
.fast_tag {
    color: #ffbf00;
    background-color: #ffbf0033;
    padding: 3px 10px;
    border-radius: 10px;
    display: flex;
    position: absolute;
    gap: 4px;
    align-items: center;
    right: 73px;
    top: 43px;
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
}
.fast_tag svg{
	width: 16px;
	height: 16px;
}
/* contact-form */



/* Responsive */


@media (min-width: 992px) {
	.operations-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 1440px){
	.Insurance-hero-content h1 {
		font-size: 55px;
		font-weight: 700;
		margin-bottom: 20px;
	}
	.hero-section{
		min-height: calc(100vh - 80px);
	}
	.hero-content{
		margin: 0;
	}
	.hero-content h1 {
		font-size: 65px;
	}
	.ai-partner-card h2,
	.ai-scale-header h2,
	.global-ai-text h2,
	.callcenter-text h2 {
		font-size: 40px;
		margin-bottom: 16px;
	}
	.industry-response-header h2,
	.bpo-section h2,
	.operations-content h3 {
		margin-bottom: 16px;
	}
    .Insurance-hero-content {
        margin-top: 0;
        max-width: 840px;
    }
}

@media (max-width: 1180px) {
	.hero-content h1 {
		font-size: 55px;
	}
	.agentic-grid,
	.services-grid,
	.bpo-grid {
		grid-template-columns: repeat(3 , minmax(0, 1fr));
		gap: 24px;
	}
	.bpo-card h3 {
		font-size: 20px;
		line-height: 26px;
		margin-bottom: 14px;
	}
	.agentic-card,
	.service-box,
	.bpo-card {
		padding: 24px;
	}
	.bpo-card ul li {
		margin-bottom: 4px;
	}
	.insurance-left h2,
	.operations-content h3 {
		font-size: 30px;
		line-height: 40px;
	}
	.Insurance-hero-content h1 {
		font-size: 50px;
		line-height: 55px;
		margin-bottom: 18px;
	}
}

@media (max-width: 991px) {
	.hero-buttons {
		gap: 16px;
		margin-bottom: 32px;
	}
	.site_btn.btn_bold {
		font-size: 16px;
		line-height: 24px;
	}
	.auto-response-stats{
		gap: 24px;
		grid-template-columns: repeat(2 , minmax(0, 1fr));
	}
	.bpo-grid {
		grid-template-columns: repeat(2 , minmax(0, 1fr));
		gap: 20px;
	}
	.bpo-section h2,
	.ai-partner-card h2, .ai-scale-header h2, 
	.global-ai-text h2, .callcenter-text h2 {
		font-size: 34px;
		        line-height: normal;
	}
	.agentic-header h2,
	.industry-response-header h2 {
		font-size: 30px;
		margin-bottom: 16px;
	}
	.ai-scale-header{
		margin-bottom: 32px;
	}
	.ai-partner-card {
		padding: 40px 30px;
	}
	.callcenter-grid,
	.global-ai-grid,
	.operations-container{
		gap: 32px;
	}
	.agentic-header p,
	.industry-response-header p,
	.operations-content p,
	.global-ai-text p,
	.ai-partner-card p,
	.ai-scale-header p {
		font-size: 18px;
		line-height: 26px;
	}
	.ai-partner-card p,
	.global-ai-text p {
		margin-bottom: 24px;
	}
	.solution-card {
		padding: 24px;
		box-shadow: 0 0 0 rgba(0, 0, 0, 0);
	}
	.operations-container .operations-image {
		order: -1;
	}
  .industry-response-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 40px;
  }

  .agentic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
.service-box-3,
  .insurance-right {
    text-align: left;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
   .footer-row {
    grid-template-columns: repeat(2, 1fr);
  }
	.operations-container {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.operations-list li {
		text-align: left;
	}

	.global-ai-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.global-ai-image {
		order: -1;
	}
	.solutions-grid {
		grid-template-columns: 1fr;
	}

	.callcenter-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.callcenter-image {
		order: -1;
	}
	.hero-section {
		min-height: 70vh;
	}

	.hero-content h1 {
		font-size: 50px;
		    margin-bottom: 16px;
	}
	.Insurance-hero-content p,
	.hero-content p {
		font-size: 20px;
		line-height: 28px;
	}
	.Insurance-hero-content p{
		margin-bottom: 24px;
	}
	.hero-btn {
		font-size: 15px;
		padding: 12px 30px;
	}
	.solutions-grid {
    	grid-template-columns: repeat(2, 1fr)!important;
		gap: 24px;
	}
}

@media (max-width: 767px) {
	.towing-hero-section,
	.Insurance-hero-section,
	.auto-hero-section{
		min-height: 50vh;
		padding: 60px 0 50px;
	}
	.fast_tag {
    right: 46px;
    top: 52px;
}
  .insurance-grid {
    grid-template-columns: repeat(1 , 1fr);
    text-align: center;
	gap: 32px;
  }
  .insurance-left{
	margin-top: 0;
  }
	footer.site-footer {
    padding: 45px 0 20px;
}
  .features-grid {
    grid-template-columns: repeat(1 , 1fr);
  }
  .operations-section.py_80{
	padding-top: 0 !important;
  }
  .features-container {
    padding: 1.5rem;
  }
.bpo-grid {
    grid-template-columns: repeat(1 , minmax(0, 1fr));
    gap: 20px;
}
  .features-container h3 {
    font-size: 1.4rem;
  }

  .feature-item {
    font-size: 0.95rem;
  }
  .auto-response-stats {
    grid-template-columns: repeat(2, 1fr);
	}.ai-scale-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 20px;
}
	.md\:grid-cols-3 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ai-partner-card {
		padding: 35px 25px;
	}
	.Insurance-hero-content h1,
	.hero-content h1 {
		font-size: 40px;
		line-height: 1;
	}
	.hero-stats {
		gap: 20px;
	}

	.hero-section {
		min-height: 70vh;
		padding: 60px 0;
	}
	.solutions-grid {
    	grid-template-columns: repeat(1, 1fr)!important;
	}
	.site_btn.btn_bold {
		font-size: 16px;
		line-height: 22px;
	}
	.banner_btn {
		border: 1px solid #fff;
	}
	.site_btn {
		padding: 12px 24px;
		font-size: 14px;
	}
	.hero-buttons {
		gap: 16px;
		margin-bottom: 24px;
	}
	.industry-response-box h3,
	.industry-response-box h3{
		font-size: 28px;
		line-height: 28px;
	}
	.insurance-stats h3,
	.ai-stat-number,
	.stats-grid-2 h3,
	.hero-stats div h3 {
		font-size: 24px;
		line-height: 28px;
	}
	.text_lg p ,
	.operations-content p, .global-ai-text p, .ai-partner-card p, .ai-scale-header p {
		font-size: 16px;
		line-height: 24px;
	}
	.ai-scale-image-wrapper img {
		aspect-ratio: 16/16;
		object-fit: cover;
	}
	.page-template-towing-roadside section.industry-response.py_80{
		padding: 30px 0 !important;
	}
	.ai-operations-scale.py_80 {
		padding-top: 20px !important;
	}
	.bpo-card {
		padding: 24px;
	}
	.insurance-left h2, .operations-content h3 {
		font-size: 28px;
		line-height: 34px;
	}
	.service-box-3,
	.insurance-right {
		padding: 24px;
		backdrop-filter: blur(6px);
	}
	.service-box h3 {
		font-size: 22px;
		line-height: 30px;
		font-weight: 700;
	}
	.service-box p {
		font-size: 16px;
		line-height: 24px;
		font-weight: 400;
		margin-bottom: 24px;
	}
	.auto-response-stats ._icon {
		margin: 0 auto 10px;
		    width: 48px;
    height: 48px;
	}
	.auto-response-stats ._icon svg{
		width: 24px;
		height: 24px;
	}
	.service-box svg {
		width: 40px;
		height: 40px;
	}
	
}

@media (max-width: 600px) {
  .agentic-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom a,
.footer-bottom p {
    font-size: 14px;
    line-height: 20px;
}
  .agentic-card {
    text-align: left;
  }
  .footer-row {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-logo img {
    margin: 0 auto 15px;
  }
  .footer-col h5 {
    margin-bottom: 14px;
}
  .services-grid {
    grid-template-columns: 1fr;
  }
  .gform_wrapper .gform_page_footer,
  .gform_wrapper .gform_footer {
    flex-direction: column;
    align-items: stretch;
  }

  .gform_previous_button,
  .gform_next_button,
  .gform_button {
    width: 100%;
    justify-content: center;
  }

    #StepsForm .gform_body {
        height: calc(90vh - 198px);
        overflow: auto;
    }
  #StepsForm .head-content{
	margin: 0;
  }
  #StepsForm h2.form_heading, #StepsForm .head-content h3 {
    font-size: 20px;
    line-height: 28px;
	margin-bottom: 4px;
  }
  #StepsForm h2.form_heading{
	margin: 0;
  }
  #StepsForm .gform_page .gform_page_fields {
	padding: 24px 12px;
 }
 #StepsForm .head-content ._icon svg {
    width: 48px;
    height: 48px;
    color: #ffbf00;
    margin: 0 auto 10px;
	}
	#StepsForm ._cta_icon svg {
		width: 24px;
		height: 24px;
	}
	#StepsForm #gform_page_1_1 .gform_page_footer {
    	flex-direction: row;
	}
	#StepsForm .gf_progressbar_wrapper,
	#StepsForm #gform_wrapper_1 .gform_page_footer, #StepsForm #gform_wrapper_1 .gform_footer{
		padding: 20px;
	}
}


@media (max-width: 576px) {
	.industry-response-stats {
		gap: 20px;
	}

	.Insurance-hero-content h1 {
		font-size: 36px;
		line-height: 42px;
	}
	.Insurance-hero-content p {
		font-size: 20px;
		line-height: 28px;
	}
	.bpo-section h2, .ai-partner-card h2, 
	.ai-scale-header h2, .global-ai-text h2, 
	.callcenter-text h2 {
		font-size: 28px;
		line-height: normal;
	}
	.auto-response-stats{
		gap: 24px;
		grid-template-columns: repeat(1 , minmax(0, 1fr));
	}
}
/* Small mobile (up to 480px) */
@media (max-width: 480px) {
	.agentic-header h2, .industry-response-header h2 {
		font-size: 26px;
		margin-bottom: 12px;
		line-height: 36px;
	}
	.Insurance-hero-content p, .hero-content p {
		font-size: 18px;
		line-height: 28px;
	}
	.hero-section {
		min-height: 60vh;
	}
	.md\:grid-cols-3{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.Insurance-hero-content h1,
	.hero-content h1 {
		font-size: 36px;
		line-height: 42px;
	}
	.ai-stat-number, .stats-grid-2 h3, .hero-stats div h3 {
		font-size: 20px;
		line-height: 26px;
		margin-bottom: 4px;
	}
}