/* Font Import */


/* Header section */
.header_about {
	position: relative;
	width: 100%;
	height: 300px;
	background-size: cover;
	background-position: center;
}

/* Overlay */
.about_overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5); /* Dark overlay */
	color: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}


/* Global Styles */


/* Tailwind Utility Classes Mimicked */
.bg-white {
	background-color: #ffffff;
}

.text-gray-800 {
	color: #4a4a4a;
}

.text-[#02A2EE

]
{
	color: #02A2EE
;
}

.text-[#FC8000

]
{
	color: #FC8000
;
}


.from-[#02A2EE

]
{
	background-color: #02A2EE
;
}

.to-[#FC8000

]
{
	background-color: #FC8000
;
}


.font-bold {
	font-weight: 700;
}

.font-semibold {
	font-weight: 600;
}


.shadow-lg {
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.shadow-xl {
	box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.rounded-lg {
	border-radius: 0.5rem;
}

.rounded-full {
	border-radius: 9999px;
}


.mx-auto {
	margin-left: auto;
	margin-right: auto;
}

.mt-4 {
	margin-top: 1rem;
}

.mt-12 {
	margin-top: 3rem;
}

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

.text-lg {
	font-size: 1.125rem;
}

.text-xl {
	font-size: 1.25rem;
}

.text-3xl {
	font-size: 1.875rem;
}

.text-4xl {
	font-size: 2.25rem;
}

.text-5xl {
	font-size: 3rem;
}

.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

.inset-0 {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.left-1

/
2
{
	left: 50%
;
}

.-translate-x-1

/
2
{
	transform: translateX(-50%)
;
}

.bg-gray-900 {
	background-color: #1a202c;
}

.p-8 {
	padding: 2rem;
}

.p-12 {
	padding: 3rem;
}

.py-8 {
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.py-20 {
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.transition-shadow {
	transition: box-shadow 0.3s ease;
}

.transition-transform {
	transition: transform 0.3s ease;
}

.hover\:shadow-xl:hover {
	box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.hover\:scale-110:hover {
	transform: scale(1.1);
}

.group:hover .group-hover\:text-[#FC8000

]
{
	color: #FC8000
;
}

.group:hover .group-hover\:scale-110 {
	transform: scale(1.1);
}

.max-w-3xl {
	max-width: 768px;
}

.grid {
	display: grid;
}

.grid-cols-1 {
	grid-template-columns: repeat(1, 1fr);
}

.md\:grid-cols-2 {
	grid-template-columns: repeat(2, 1fr);
}

.lg\:grid-cols-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gap-12 {
	gap: 3rem;
}

/* Links */
.hover\:underline:hover {
	text-decoration: underline;
}

.svg-wrapper {
	position: absolute;
	top: -2rem; /* -8 in rem */
	left: 50%;
	transform: translateX(-50%);
	width: 4rem; /* 16px * 4 */
	height: 4rem;
	background-color: #FC8000;
	color: white; /* This will apply to the SVG if stroke="currentColor" */
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease, color 0.3s ease;
}

.svg-wrapper-service {
	position: absolute;
	top: -2rem; /* -8 in rem */
	left: 50%;
	transform: translateX(-50%);
	width: 4rem; /* 16px * 4 */
	height: 4rem;
	background-color: #02A2EE;
	color: white; /* This will apply to the SVG if stroke="currentColor" */
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease, color 0.3s ease;
}

.svg-wrapper-service:hover {
	transform: translateX(-50%) scale(1.15); /* Keeps it centered and scales up */
	color: #FC8000; /* Changes SVG stroke color on hover */
}

.svg-wrapper:hover {
	transform: translateX(-50%) scale(1.15); /* Keeps it centered and scales up */
	color: #02A2EE; /* Changes SVG stroke color on hover */
}

.icon {
	width: 1.5rem; /* Adjust size */
	height: 1.5rem;
}


*,
*:before,
*:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	margin: 0;
}

.wk-desk-1 {
	width: 8.333333%;
}

.wk-desk-2 {
	width: 16.666667%;
}

.wk-desk-3 {
	width: 25%;
}

.wk-desk-4 {
	width: 33.333333%;
}

.wk-desk-5 {
	width: 41.666667%;
}

.wk-desk-6 {
	width: 50%;
}

.wk-desk-7 {
	width: 58.333333%;
}

.wk-desk-8 {
	width: 66.666667%;
}

.wk-desk-9 {
	width: 75%;
}

.wk-desk-10 {
	width: 83.333333%;
}

.wk-desk-11 {
	width: 91.666667%;
}

.wk-desk-12 {
	width: 100%;
}

@media (max-width: 1024px) {
	.wk-ipadp-1 {
		width: 8.333333%;
	}

	.wk-ipadp-2 {
		width: 16.666667%;
	}

	.wk-ipadp-3 {
		width: 25%;
	}

	.wk-ipadp-4 {
		width: 33.333333%;
	}

	.wk-ipadp-5 {
		width: 41.666667%;
	}

	.wk-ipadp-6 {
		width: 50%;
	}

	.wk-ipadp-7 {
		width: 58.333333%;
	}

	.wk-ipadp-8 {
		width: 66.666667%;
	}

	.wk-ipadp-9 {
		width: 75%;
	}

	.wk-ipadp-10 {
		width: 83.333333%;
	}

	.wk-ipadp-11 {
		width: 91.666667%;
	}

	.wk-ipadp-12 {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.wk-tab-1 {
		width: 8.333333%;
	}

	.wk-tab-2 {
		width: 16.666667%;
	}

	.wk-tab-3 {
		width: 25%;
	}

	.wk-tab-4 {
		width: 33.333333%;
	}

	.wk-tab-5 {
		width: 41.666667%;
	}

	.wk-tab-6 {
		width: 50%;
	}

	.wk-tab-7 {
		width: 58.333333%;
	}

	.wk-tab-8 {
		width: 66.666667%;
	}

	.wk-tab-9 {
		width: 75%;
	}

	.wk-tab-10 {
		width: 83.333333%;
	}

	.wk-tab-11 {
		width: 91.666667%;
	}

	.wk-tab-12 {
		width: 100%;
	}
}

@media (max-width: 500px) {
	.wk-mobile-1 {
		width: 8.333333%;
	}

	.wk-mobile-2 {
		width: 16.666667%;
	}

	.wk-mobile-3 {
		width: 25%;
	}

	.wk-mobile-4 {
		width: 33.333333%;
	}

	.wk-mobile-5 {
		width: 41.666667%;
	}

	.wk-mobile-6 {
		width: 50%;
	}

	.wk-mobile-7 {
		width: 58.333333%;
	}

	.wk-mobile-8 {
		width: 66.666667%;
	}

	.wk-mobile-9 {
		width: 75%;
	}

	.wk-mobile-10 {
		width: 83.333333%;
	}

	.wk-mobile-11 {
		width: 91.666667%;
	}

	.wk-mobile-12 {
		width: 100%;
	}
}


.responsive-container-block {
	min-height: 75px;
	height: fit-content;
	width: 100%;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	display: flex;
	flex-wrap: wrap;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	justify-content: flex-start;
}

.text-blk {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	line-height: 25px;
}

.responsive-container-block.bigContainer {
	padding-top: 10px;
	padding-right: 30px;
	padding-bottom: 10px;
	padding-left: 30px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.mainImg {
	color: black;
	width: 55%;
	height: auto;
	box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 10px 7px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
}

.text-blk.headingText {
	font-size: 25px;
	font-weight: 700;
	line-height: 34px;
	color: rgb(51, 51, 51);
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}

.allText {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 40px;
	width: 40%;
	margin: 0 0 0 0;
}

.text-blk.subHeadingText {
	color: rgb(102, 102, 102);
	font-size: 25px;
	line-height: 34px;
	font-weight: 700;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 15px;
	margin-left: 0px;
}

.text-blk.description {
	font-size: 25px;
	line-height: 34px;
	color: rgb(102, 102, 102);
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 50px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
}

.explore {
	font-size: 20px;
	line-height: 28px;
	color: rgb(255, 255, 255);
	background-color: rgb(244, 152, 146);
	padding-top: 10px;
	padding-right: 50px;
	padding-bottom: 10px;
	padding-left: 50px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: outset;
	border-right-style: outset;
	border-bottom-style: outset;
	border-left-style: outset;
	border-top-color: rgb(244, 152, 146);
	border-right-color: rgb(244, 152, 146);
	border-bottom-color: rgb(244, 152, 146);
	border-left-color: rgb(244, 152, 146);
	border-image-source: initial;
	border-image-slice: initial;
	border-image-width: initial;
	border-image-outset: initial;
	border-image-repeat: initial;
	cursor: pointer;
}

.explore:hover {
	background-image: initial;
	background-position-x: initial;
	background-position-y: initial;
	background-size: initial;
	background-repeat-x: initial;
	background-repeat-y: initial;
	background-attachment: initial;
	background-origin: initial;
	background-clip: initial;

}

.responsive-container-block.Container {
	margin-top: 80px;
	margin-right: auto;
	margin-bottom: 50px;
	margin-left: auto;
	justify-content: center;
	align-items: center;
	max-width: 1320px;
	padding: 10px;
}

.responsive-container-block.Container.bottomContainer {
	margin-right: 0px;
	margin-bottom: 50px;
	margin-left: 0px;
	flex-direction: row-reverse;
	margin: 100px auto 50px auto;
}

.allText.aboveText {
	margin: 0 0 0 40px;
}

.allText.bottomText {
	margin: 0 40px 0 0;
}

@media (max-width: 1024px) {
	.responsive-container-block.Container {
		max-width: 850px;
	}

	.mainImg {
		width: 55%;
		height: auto;
	}

	.text-blk.description {
		font-size: 20px;
	}

	.allText {
		width: 40%;
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 0px;
		margin-left: 20px;
	}

	.responsive-container-block.bigContainer {
		padding-top: 10px;
		padding-right: 10px;
		padding-bottom: 10px;
		padding-left: 10px;
	}

	.text-blk.subHeadingText {
		font-size: 22px;
	}

	.responsive-container-block.Container.bottomContainer {
		margin: 80px auto 50px auto;
	}

	.responsive-container-block.Container {
		max-width: 830px;
	}

	.allText.aboveText {
		margin: 30px 0 0 40px;
	}

	.allText.bottomText {
		margin: 30px 40px 0 0;
	}
}

@media (max-width: 768px) {
	.mainImg {
		width: 90%;
	}

	.allText {
		width: 100%;
		margin: 0;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 0px;
	}

	.responsive-container-block.Container {
		flex-direction: column;
		height: auto;
	}

	.text-blk.headingText {
		text-align: center;
	}

	.text-blk.subHeadingText {
		text-align: center;
		font-size: 25px;
	}

	.text-blk.description {
		text-align: center;
		font-size: 25px;
	}

	.allText {
		margin: 40px 0px 0px;
	}

	.allText.aboveText {
		margin: 40px 0 0 0;
	}

	.responsive-container-block.Container {
		margin: 80px auto 50px auto;
	}

	.responsive-container-block.Container.bottomContainer {
		margin: 50px auto 50px auto;
	}

	.allText.bottomText {
		margin: 40px 0 0 0;
	}
}

@media (max-width: 500px) {
	.responsive-container-block.Container {
		padding-top: 10px;
		padding-right: 0px;
		padding-bottom: 10px;
		padding-left: 0px;
		width: 100%;
		max-width: 100%;
	}

	.mainImg {
		width: 100%;
	}

	.responsive-container-block.bigContainer {
		padding: 10px 25px;
	}

	.text-blk.subHeadingText {
		font-size: 25px;
		padding: 0px;
	}

	.text-blk.description {
		font-size: 25px;
		padding: 0px;
	}

	.allText {
		padding: 0px;
		width: 100%;
	}
}
