@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* Smooth scrolling */
html {
	scroll-behavior: smooth;
}
::-webkit-scrollbar {
	width: 4px;
}

::-webkit-scrollbar-track {
	background-color: #fff;
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, #FAA224 0%, #FAB880 100%);
}
:root {
	--black: #000;
	--white: #fff;
	--orange: #F9A124;
}

* {
	margin: 0;
	padding: 0;
}

body {
	font-family: "Inter", sans-serif;
	overflow-x: hidden;
}

.container {
	width: 100%;
	margin: 0px auto;
	padding-left: 1rem;
	padding-right: 1rem
}
.white-link-foot{
	color: #fff;
}
@media (min-width: 576px) {
	.container {
		max-width: 540px;
	}
}

@media (min-width: 768px) {
	.container {
		max-width: 720px;
	}
}

@media (min-width: 992px) {
	.container {
		max-width: 960px;
	}
}

@media (min-width: 1200px) {
	.container {
		max-width: 1140px;
	}
}

@media (min-width: 1400px) {
	.container {
		max-width: 1320px;
	}
}

a {
	text-decoration: none;
}

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

h1 {
	font-family: 'Agency FB Bold';
	text-transform: uppercase;
}

h2 {
	font-family: 'Agency FB Bold';
	text-transform: uppercase;
}
h3{
	font-family: 'Agency FB Bold';
	text-transform: uppercase;
}

/* Main Button */
/* Main Button */
.buzzbolt_btn {
	background-color: transparent;
	border: 3px solid var(--orange);
	color: #000;
	padding: 13px 38px !important;
	font-size: 16px;
	outline: none;
	position: relative;
	transform: skewX(-15deg);
	transition: all 0.4s ease;
	overflow: hidden;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.home_header_outer .buzzbolt_btn {
	margin-left: 42px;
}
.buzzbolt_btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
	transition: 0.5s;
	z-index: -1;
}
.buzzbolt_btn span {
	display: inline-block;
	transform: skewX(15deg);
}

/* Hover effects */
.buzzbolt_btn:hover {
	background: linear-gradient(180deg, #FAA224 0%, #FAB880 100%);
	color: #fff;
	box-shadow: none !important;
	animation: pulse 1s infinite;
}

.buzzbolt_btn:hover::before {
	left: 100%;
}

/* Heading */
.main_heading {
	text-align: center;
	margin-bottom: 48px;
}
.main_heading h2 {
	font-size: 64px;
	line-height: 72px;
	text-align: center;
	margin-bottom: 12px;
}
@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}

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

/* Home Banner */
.banner_image img {
	width: 100%;
}
.banner_sec {
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
	justify-content: center;
	align-items: center;
	height: 100vh;
	background: url(https://buzzbolt.ca/wp-content/uploads/2025/05/buzzbolt.webp);
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
}
.banner_sec span {
	position: relative;
	width: 15px;
	height: 15px;
	cursor: pointer;
	display: block;
	z-index: 9;
}
.banner_sec span::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, #000 0%, #000 100%);
	transform: scale(0.1);
	box-shadow: 0 0 10px #000,
		0 0 20px #000,
		0 0 40px #000,
		0 0 60px #000,
		0 0 80px #000,;
	border-radius: 50%;
	pointer-events: none;
	transition: 2s;
}

.banner_sec span:hover::before {
	transform: scale(1);
	transition: 0s;
	background: linear-gradient(180deg, #fff 0%, #fff 100%);
	box-shadow: 0 0 10px #fff,
		0 0 20px #fff,
		0 0 40px #fff,
		0 0 60px #fff,
		0 0 80px #fff,
		0 0 100px #fff;
}

.banner_sec {
	position: relative;
}

.banner_cnt {
	position: absolute;
	top: 50%;
	transform: translatey(-50%);
	display: flex;
	flex-direction: column;
	z-index: 9;
}

.banner_cnt h1 {
	font-size: 100px;
	color: var(--white);
	line-height: 100px;
	animation: fadeInDown 0.5s ease-out;
}

.banner_cnt p {
	color: var(--white);
	font-size: 56px;
	font-weight: 500;
	animation: fadeInDown 0.5s ease-out;
}

.banner_btn {
	margin-top: 42px;
	display: flex;
	width: max-content;
	animation: fadeInDown 0.5s ease-out;
}

.banner_btn .buzzbolt_btn:first-child span {
	color: var(--white);
}

.banner_btn .buzzbolt_btn:last-child {
	background: linear-gradient(180deg, #FAA224 0%, #FAB880 100%);
}
.buzzbolt_btn span::before {
	display: none;
}
.buzzbolt_btn span {
	width: 100%;
	height: 100%;
}
/* Buzzbolt Advantage css */
/* FuzzBolt Advantage Styles */
.advantage-section {
	margin-top: -4px;
	padding: 40px 0px 60px 0px;
	background-color: var(--black);
}

.advantage-header {
	text-align: center;
	margin-bottom: 28px;
}

.advantage-logo {
	margin-bottom: 20px;
}
.advantage-logo img {
	width: 35%;
}
.advantage-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	margin-bottom: 48px;
	width: 90%;
	margin: 0px auto 48px;
}

.advantage-item {
	text-align: center;
	padding: 0px;
}
.advantage-icon {
	width: 140px;
	height: 120px;
	margin: 0px auto 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.advantage-icon img {
	width: 100%;
}

.advantage-text {
	color: var(--white);
	font-size: 18px;
	line-height: 26px;
}

.buzzbolt_advans_btn {
	text-align: center;
}
.buzzbolt_advans_btn .buzzbolt_btn {
	color: #fff;
}
.advantage-item .advantage-icon img {
	transition: transform 0.3s ease-in-out;
}

.advantage-item:hover .advantage-icon img {
	transform: translateY(-10px);
	animation: blink 1s;
}

@keyframes blink {
	0%, 50% {
		filter: brightness(1) drop-shadow(0 0 5px #F9A124);
	}
	25%, 75% {
		filter: brightness(1.5) drop-shadow(0 0 15px #F9A124) drop-shadow(0 0 25px #F9A124);
	}
}

/* Get Started Styles */
.hero-section {
	background: linear-gradient(180deg, #FAA224 0%, #FAB880 100%);
	position: relative;
	overflow: hidden;
	/* min-height: 300px; */
	padding: 80px 0px 50px 0px;
}

.hero-section::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 75vh 45vw;
	border-color: transparent transparent var(--black) transparent;
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero-title {
	color: var(--black);
	font-size: 64px;
	letter-spacing: 0px;
	margin-bottom: 12px;
}

.hero-description {
	color: var(--black);
	font-size: 20px;
	line-height: 28px;
	letter-spacing: 0px;
	width: 70%;
	margin-bottom: 28px;
}

.hero-content .buzzbolt_btn {
	border: 3px solid var(--black);
	font-weight: 500;
}

.hero-content .buzzbolt_btn:hover {
	background: linear-gradient(180deg, #000000 0%, #535353 100%);
}

/* Our Services Css */
.our_services {
	padding: 100px 0px;
}

.our_services .main_heading h2{
	margin-bottom: 18px
}

.our-services .slider-wrapper {
	position: relative;
	padding: 0 60px;
}
.slider-wrapper .buzzbolt_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: max-content;
	margin: 48px auto 0px auto;
}
.our-services .services-slider {
	overflow: hidden;
}
.our-services .slide-item {
	position: relative;
	margin: 0 10px 0px 10px;
	overflow: hidden;
	transition: transform 0.3s ease;
	cursor: pointer;
}
/* .our-services .slide-item::before {
content: '';
position: absolute;
top: 0;
left: 0;
background: url(https://navs11.sg-host.com/wp-content/uploads/2025/05/service-dots.png);
background-repeat: no-repeat;
background-size: cover;
width: 100%;
height: 100%;
} */

.our-services .slide-item:hover {
	transform: scale(1.05);
}

.our-services .slide-image {
	width: 100%;
	display: block;
}

.our-services .slide-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
	padding: 40px 20px 20px;
	color: white;
}

.our-services .slide-title {
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 0;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
/* .services-buttons a:last-child {
background: linear-gradient(180deg, #FAA224 0%, #FAB880 100%);
} */
/* Custom Arrow Styles */
.our-services .custom-arrow {
	position: absolute;
	top: 40%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background: white;
	border: none;
	cursor: pointer;
	z-index: 10;
	display: flex !important;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.our-services .custom-arrow:hover svg {
	fill: white;
}

.our-services .custom-arrow svg {
	width: 20px;
	height: 20px;
	fill: #333;
	transition: fill 0.3s ease;
}

.our-services .prev-arrow {
	left: -1%;
	transform: rotate(180deg);
	top: 35% !important;
}

.our-services .next-arrow {
	right: -1%;
}

.our-services .slick-prev,
.our-services .slick-next {
	display: none !important;
}


/* Our Work css */

.work_slider_outer {
	position: relative;
}
.work_slider_outer button {
	position: absolute;
	top: 43%;
	z-index: 9;
	height: 50px;
	width: 50px;
	background: #0000007a;
	border: none;
	cursor: pointer;
}
.work_slider_outer button img {
	width: 50px;
	filter: brightness(0) invert(1);
}
.work_slider_outer #workNext{
	right: 0px;
}
.work_slider_outer #workPrev {
	transform: rotate(180deg);
}
.our_work_box img {
	width: 100%;
}
.work_slider_outer .buzzbolt_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: max-content;
	margin: 48px auto 0px auto;
}
.our_work_sec {
	padding: 0px 0px 100px 0px;
}
.our_work_sec.inner_page {
	padding: 0px;
}
.our_work_box {
	display: block;
	text-decoration: none;
	overflow: hidden;
	position: relative;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.work_image_wrapper {
	position: relative;
	overflow: hidden;
}

.work_image_wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.our_work_box:hover .work_image_wrapper img {
	transform: scale(1.1);
}

.work_overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
	opacity: 0;
	transition: all 0.4s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.our_work_box:hover .work_overlay {
	opacity: 1;
}

.work_content {
	text-align: center;
	color: white;
	transform: translateY(20px);
	transition: transform 0.4s ease;
}

.our_work_box:hover .work_content {
	transform: translateY(0);
}

.work_content h4 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: white;
}

.view_work {
	display: inline-block;
	padding: 8px 20px;
	background: rgba(255, 255, 255, 0.2);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 500;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.our_work_box:hover .view_work {
	background: rgba(255, 255, 255, 0.9);
	color: #333;
	border-color: rgba(255, 255, 255, 0.9);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
	.work_content h4 {
		font-size: 1.2rem;
	}

	.view_work {
		padding: 6px 16px;
		font-size: 0.8rem;
	}
}


/* Footer Section */
footer {
	background: var(--black);
	padding-top: 170px;
	padding-bottom: 70px;
}

.footer_grid {
	border-top: 1px solid #E4E4E7;
	display: grid;
	grid-template-columns: 1.2fr 2fr 0.8fr;
	padding-top: 70px;
	gap: 110px;
}

.footer_box h2 {
	color: var(--orange);
	font-size: 24px;
	line-height: 24px;
	margin-bottom: 48px;
}

.footer_box {
	color: var(--white);
}

.social_icon ul {
	display: flex;
	align-items: center;
	margin-top: 36px;
	gap: 24px;

}

.footer_box p {
	font-size: 14px;
	line-height: 22px;
	font-weight: 400;
}

.footer_box h4 {
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 48px;
	font-weight: 700;
}

.footer_box ul li {
	margin-bottom: 24px;
}

.footer_box ul li a {
	color: var(--white);
}
.footer_grid .footer_box:last-child h4 {
	opacity: 0;
}
.footer_box_inner {
	display: flex;
	justify-content: space-between;
}

section.footer_bottom {
	background: var(--black);
	padding-bottom: 24px;
	text-align: center;
	margin-top: -1px;
}

.footer_year p {
	color: #fff;
	font-size: 12px;
	line-height: 24px;
	letter-spacing: 0;
}
/* Services Page Css*/


/* Services Section Styles */
.single_services_sec {
	padding: 150px 0px 100px 0px;
	position: relative;
	overflow: hidden;
}

.services-content h1 {
	font-size: 84px;
	font-weight: 900;
	color: var(--black);
	text-transform: uppercase;
	line-height: 94px;
	margin-bottom: 24px;
	animation: fadeInDown 0.5s ease-out;
}
.services-content h6 {
	font-size: 32px;
	font-weight: 400;
	line-height: 40px;
	margin-bottom: 18px;
	animation: fadeInDown 0.5s ease-out;
}
.services-content p {
	width: 95%;
	color: #000;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 24px;
	animation: fadeInDown 0.5s ease-out;
}
.services-buttons {
	display: flex;
	justify-content: start;
	margin-top: 36px;
	animation: fadeInDown 0.7s ease-out;
}


/* Main line animation section */
.bottom_line {
	margin: 120px 0px 0px 0px;
	position: relative;
}
.bottom_line:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0px;
	width: 0%;
	height: 3px;
	background: var(--black);
	transform: translateY(-38%) rotate(-6deg);
	transform-origin: left center;
	transition: width 1s cubic-bezier(0.4, 0.0, 0.2, 1);
}
.all_single_services {
	padding: 100px 0px;
}
.all_single_services .main_heading h2 {
	font-size: 52px;
	line-height: 62px;
	color: var(--black);
}
.all_single_services_outer {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.all_single_services_items img {
	width: 100%;
	transition: all 0.4s ease-in-out;
	height: 100%;
}
.all_single_services_items {
	position: relative;
	overflow: hidden;
}
.all_single_services_items:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.42) 0%, rgba(255, 255, 255, 0) 100%);
	z-index: 1;
}
.all_single_services_items:hover img{
	transform: scale(1.08);
}
.all_single_services_items p {
	position: absolute;
	bottom: 3px;
	left: 0;
	color: var(--white);
	font-size: 18px;
	line-height: 28px;
	padding: 24px;
	width: -webkit-fill-available;
	/* 	background: linear-gradient(1deg, rgba(0, 0, 0, 0.31) 0%, rgba(255, 255, 255, 0) 100%); */
	z-index: 9;
}



.single_services_industries {
	background: var(--black);
	color: var(--white);
	padding: 80px 0px;
}
.single_service_indus_heading {
	text-align: left;
	margin-bottom: 48px;
}
.single_service_indus_heading h3 {
	font-size: 64px;
	letter-spacing: 0px;
	margin-bottom: 12px;
}
.single_service_indus_heading h6 {
	font-size: 32px;
	line-height: 40px;
	margin-bottom: 18px;
}

.single_service_indus_heading p {
	font-size: 16px;
	line-height: 26px;
	letter-spacing: 0px;
	margin-bottom: 28px;
}
.single_services_idus_grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 56px;
	row-gap: 16px;
}
.single_services_indus_cnt {
	width: 80%;
}
.single_services_indus_items {
	display: flex;
	gap: 24px;
	justify-content: space-between;
	border-bottom: 1px solid #fff;
	padding-bottom: 16px;
}
.single_services_idus_img img {
	width: 100%;
	margin-top: 4px;
}

.single_services_indus_cnt h4 {
	font-size: 21px;
	line-height: 29px;
	margin-bottom: 6px;
}
.single_services_indus_cnt p {
	margin-bottom: 12px;
	font-size: 16px;
	line-height: 24px;
	width: 90%;
}
.single_services_indus_cnt a {
	display: flex;
	justify-content: end;
	color: #fff;
	width: max-content;
	margin-left: auto;
}

.single_services_industries .buzzbolt_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: max-content;
	margin: 48px auto 0px auto;
	color: #fff;
}
/* Industries */
.single_indus{
	position: relative;
	margin-top: 100px;
}
.single_indus::before {
	content: '';
	position: absolute;
	top: -199px;
	background: #000;
	width: 100%;
	height: 200px;
	clip-path: polygon(0 100%, 100% 48%, 100% 100%, 0% 100%);
}
/* About us */
section.meet_our_team_sec {
	position: relative;
	padding: 0px 0px 80px 0px;
}
.meet_our_team_grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 48px;
	align-items: center;
	height: 80vh;
}
.meet_our_team_right_grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}
.meet_our_team_right {
	position: absolute;
	right: 0;
	width: 48%;
}
.meet_our_team_member img {
	width: 100%;
	height: 320px;
	object-fit: cover;
}
.meet_our_team_member {
	position: relative;
}
.meet_our_team_member .team_member_name {
	position: absolute;
	bottom: 5px;
	width: -webkit-fill-available;
	padding: 10px 10px 10px 10px;
	background: rgba(255, 255, 255, 0.5);
}
.meet_our_team_text h2 {
	font-size: 64px;
	margin-bottom: 0px;
}
.meet_our_team_text h4 {
	color: var(--orange);
	font-size: 35px;
	margin-bottom: 24px;
}
.meet_our_team_text p {
	margin-bottom: 24px;
	font-size: 16px;
	line-height: 26px;
}
.team_member_name h4 {
	margin-bottom: 6px;
	font-size: 18px;
}
.about_mid_banner {
	position: relative;
	background: url(https://buzzbolt.ca//wp-content/uploads/2025/05/about-team-bottom-image.png);
	width: 100%;
	height: 420px;
}
.about_mid_banner::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: #0000004f;
}
.about_banner_cnt {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.about_banner_cnt p {
	font-size: 28px;
	line-height: 48px;
	color: var(--white);
	font-weight: 600;
	width: 90%;
}
/* Buzzbolt Pillars Styles */
.buzzbolt_pillars {
	background-color: var(--black);
	padding: 80px 0;
}

.buzzbolt_pillars .container {
	text-align: center;
}

.buzzbolt_pillars h2 {
	color: var(--white);
	font-size: 64px;
	margin-bottom: 48px;
}

.pillars_grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	align-items: start;
}

.pillar_item {
	text-align: center;
}

.pillar_icon {
	margin: 0 auto 24px;
}

.pillar_item h4 {
	color: var(--white);
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 12px;
}

.pillar_item p {
	color: var(--white);
	font-size: 16px;
	line-height: 24px;
}

/* About Certifications Styles */
.about_certification {
	background-color: #f8f9fa;
	padding: 80px 0;
}

.about_certification .container {
	text-align: center;
}

.about_certification h2 {
	color: var(--black);
	font-size: 64px;
	margin-bottom: 12px;
}

.certification_subtitle {
	color: #000;
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 48px;
	/* max-width: 700px; */
	margin-left: auto;
	margin-right: auto;
}

.certifications_grid {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 24px;
	align-items: center;
	justify-items: center;
}

.certification_logo img {
	width: 100%;
}

/* Image Styling - Default Grayscale */
.certification_logo img {
	max-width: 100%;
	height: auto;
	filter: grayscale(100%);
	opacity: 1;
	cursor: pointer;
	transition: all 0.3s ease;
}

/* Hover Effect - Original Colors */
.certification_logo:hover img {
	filter: grayscale(0%);
}

/* Single Service */
section.single_ser_includes {
	padding: 70px 0px 100px 0px;
}
.services_includes_grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 80px;
	align-items: center;
}
.services_includes_left img {
	width: 100%;
	transition: all 0.4s ease;
}
.services_includes_right h2 {
	font-size: 52px;
	margin-bottom: 36px;
}
.services_includes_right p.mb-0 {
	margin-bottom: 8px;
}

.services_includes_right p {
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 24px;
}
.services_includes_left {
	overflow: hidden;
}
.services_includes_left:hover img {
	transform: scale(1.1);
}
.single_commitment_sec {
	background: #000;
	padding: 100px 0px;
	color: var(--white);
}
.single_commitment_sec .main_heading h3 {
	margin-bottom: 32px;
	font-size: 64px;
	line-height: 72px;
	text-align: center;
}
.single_commitment_grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 60px;
}
.single_commitment_items {
	text-align: center;
	position: relative;
	padding: 10px 32px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.single_commitment_items::before {
	content: '';
	position: absolute;
	right: -8%;
	top: 0;
	width: 1px;
	height: 100%;
	background: var(--white);
}
.single_commitment_items:last-child::before{
	display: none; 
}
.single_commitment_items:nth-child(3)::before{
	display: none; 
}

.single_commitment_items svg {
	margin-bottom: 12px;
}
.single_commitment_items h4 {
	margin-bottom: 24px;
}
.single_commitment_items p {
	font-size: 16px;
	line-height: 24px;
	margin-bottom: 12px;
}

.single_commitment_items a {
	color: var(--white);
	text-decoration: underline;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 24px;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}
.services_includes_right ul {
	list-style: disc;
	margin-left: 20px;
}

.services_includes_right ul li {
	margin-bottom: 8px;
	font-size: 16px;
	line-height: 24px;
}
.single_commitment_grid .single_commitment_items:last-child {
	justify-content: space-between;
}
.single_commitment_grid .single_commitment_items:nth-child(4) {
	justify-content: space-between;
}
.single_commitment_grid .single_commitment_items:nth-child(5) {
	justify-content: space-between;
}


/* Contact Us */
/* Contact Section Styles */

.contact_us_sec .main_heading h2 {
	color: var(--white);
	margin-bottom: 20px;
}
.contact_us_sec .main_heading p {
	color: var(--white);
}
.contact_us_sec {
	background-color: var(--black);
	padding: 100px 0px 0px 0px;
	position: relative;
	margin-top: 100px;
}
.contact_us_sec::before{
	content: '';
	position: absolute;
	top: -199px;
	background: #000;
	width: 100%;
	height: 200px;
	clip-path: polygon(0 100%, 100% 48%, 100% 100%, 0% 100%);
}
.get_free_consultation_form {
	max-width: 600px;
	margin: 0 auto;
}

.form_row {
	display: flex;
	gap: 20px;
	margin-bottom: 24px;
}

.form_group {
	flex: 1;
}

.form_group.full_width {
	width: 100%;
}

.form_group label {
	display: block;
	margin-bottom: 12px;
	font-size: 16px;
	font-weight: 500;
	color: var(--white);
}

.form_group input,
.form_group textarea{
	width: -webkit-fill-available;
	padding: 12px 15px;
	background-color: var(--white);
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-family: "Inter", sans-serif;
	color: #333;
}
.form_group select {
	padding: 12px 15px;
	background-color: var(--white);
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-family: "Inter", sans-serif;
	color: #333;
}

.form_group input::placeholder,
.form_group textarea::placeholder {
	color: #999;
}

.form_group textarea {
	min-height: 120px;
	resize: none;
}
/* .phone_input_wrapper {
display: flex;
background-color: var(--white);
border-radius: 4px;
overflow: hidden;
align-items: center;
} */

/* .country_code {
background-color: transparent;
border: none;
padding: 12px 8px 12px 15px;
font-size: 1rem;
color: #333;
cursor: pointer;
outline: none;
appearance: none;
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
background-position: right 4px center;
background-repeat: no-repeat;
background-size: 16px;
padding-right: 24px;
} */
.form_group.full_width br {
	display: none;
}
.phone_number {
	flex: 1;
	border: none;
	padding: 12px 15px;
	font-size: 1rem;
	color: #333;
	background-color: transparent;
}

.checkbox_wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 25px 0;
}

.checkbox_wrapper input[type="checkbox"] {
	width: auto;
	margin-top: 2px;
}
.checkbox_wrapper label {
	font-size: 16px;
	line-height: 24px;
	color: var(--white);
}

.checkbox_wrapper a {
	color: var(--white);
	text-decoration: underline;
}
.get_free_consultation_form .submit_btn a {
	color: var(--white);
	padding: 0 !important;
}
.contact_outer_btn {
	animation: fadeInDown 0.7s ease-out;
	width: max-content;
	align-items: center;
	display: flex;
	gap: 100px;
	margin-top: 48px;
}
.contact_outer_btn a {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 16px;
	color: var(--black);
	font-weight: 700;
}
span.wpcf7-spinner {
	display: none;
}
input.wpcf7-form-control.wpcf7-submit {
	padding: 13px 38px !important;
	background-color: transparent;
	border: 3px solid var(--orange);
	color: #fff;
	padding: 13px 38px !important;
	font-size: 16px;
	outline: none;
	position: relative;
	transform: skewX(-15deg);
	transition: all 0.4s ease;
	overflow: hidden;
	z-index: 1;
	display: inline-flex;
}

.wpcf7 .wpcf7-submit:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}
/* Single Work */

.work_heading {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.single_work_top {
	padding: 100px 0px;
}
.work_heading h1 {
	font-size: 64px;
	margin-bottom: 50px;
	width: 80%;
	animation: fadeInDown 0.5s ease-out;
}
.work_heading p {
	width: 90%;
	font-size: 16px;
	line-height: 26px;
	margin-bottom: 0;
	animation: fadeInDown 0.7s ease-out;
}
.work_logo {
	width: 20%;
	animation: fadeInDown 0.5s ease-out;
}
/* Floating animation define karna */
@-webkit-keyframes float {
	0% { -webkit-transform: translateY(0px); }
	50% { -webkit-transform: translateY(-10px); }
	100% { -webkit-transform: translateY(0px); }
}

@keyframes float {
	0% { transform: translateY(0px); }
	50% { transform: translateY(-10px); }
	100% { transform: translateY(0px); }
}

/* Option 1: Sirf floating animation */
.work_logo {
	width: 20%;
	-webkit-animation: float 2s ease-in-out infinite;
	animation: float 2s ease-in-out infinite;
}
.work_logo img {
	width: 100%;
}
.single_works_images_sec button {
	background: #000;
	border: none;
}
.single_works_images_sec button img {
	filter: brightness(0) invert(1);
}
.single_works_images_sec button {
	position: absolute;
	top: 40%;
	background: #000;
	border: none;
	z-index: 1;
	cursor: pointer;
}
.single_works_images_sec .slider-wrapper{
	position: relative;
}
.single_works_images_sec .next-arrow{
	right: 0;
}
.single_works_images_sec .prev-arrow {
	transform: rotateY(180deg) !important;
}


.work_image_items img {
	width: 100%;
	height: 450px;
	object-fit: cover;
}

.work-slider{
	margin:0 -15px;
}
.work-slider .slick-slide {
	margin-right:15px;
	margin-left:15px;
}

.form_group br {
	display: none;
}
.checkbox_wrapper p {
	display: flex;
	justify-content: start;
	gap: 6px;
	align-items: center;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
	border-color: #ffa500;
	width: 600px;
	margin: 30px auto 0px auto;
	color: #fff;
}
.wpcf7 form.sent .wpcf7-response-output {
	border-color: #46b450;
	color: #fff;
	width: 600px;
	margin: 30px auto 0px auto;
}
.get_free_consultation_form .wpcf7-list-item {
	display: inline-block;
	margin: 0;
}
.buzzbolt_btn input {
	border: none;
	color: #fff;
	background: transparent;
	cursor: pointer;
}
.buzzbolt_btn input:disabled {
	color: #515151;
}


/* Privacy Policy */
.privacy_policy_sec {
	padding: 100px 0px;
}

.privacy_policy_box h1 {
	font-size: 52px;
	margin-bottom: 12px;
}

.privacy_policy_box p {
	font-size: 18px;
	margin-bottom: 12px;
	line-height: 28px;
}
.privacy_policy_box h4 {
	font-size: 24px;
	margin-top: 24px;
	border-top: 1px solid #ccc;
	padding-top: 23px;
	margin-bottom: 8px;
}
.privacy_policy_box ul {
	list-style: circle;
	margin-left: 18px;
}
.privacy_policy_box ul li{
	font-size: 18px;
	margin-bottom: 12px;
}
.wpcf7 form.spam .wpcf7-response-output {
	margin: 20px 0px 0px 0px;
	border-color: #f56e28;
	color: #fff;
	max-width: 600px;
	margin: 34px auto 0px auto;
}
.check {
	width: 100px;
	height: 100px;
	margin: 0 auto 30px;
}
.thanks_main h1 {
	font-size: 74px;
	line-height: 84px;
	margin-bottom: 20px;
	text-align: center;
	font-style: italic;
	font-weight: 900;
	color: #000;
}
.thanks_main p {
	font-size: 20px;
	line-height: 30px;
	width: 70%;
	margin: 0 auto 25px;
	font-weight: 500;
	text-align: center;
}
.top-btn .anweshka_btn2 {
	margin: auto;
	background: var(--magenta);
	border: snow;
	color: var(--white);
	padding: 14px 32px;
}
.anweshka_btn2 {
	padding: 14px 23px;
	border: 1px solid #4E366A;
	border-radius: 60px;
	color: var(--black);
	display: flex;
	align-items: center;
	gap: 12px;
	width: max-content;
	transition: .5s ease;
}
.thank_wrapper {
	padding: 100px 0px;
	text-align: center;
}









