/* Hide default cursor */


/* Main Circle Cursor */
.custom-cursor {
	position: fixed;
	top: 0;
	left: 0;
	width: 38px;
	height: 38px;
	border: 2px solid #5BB14E;
	border-radius: 50%;
	pointer-events: none;
	transform: translate(-50%, -50%);
	z-index: 99999;
	transition: width .25s ease,
		height .25s ease,
		border-color .25s ease,
		background .25s ease,
		transform .08s linear;
}

/* Small Dot */
.custom-cursor-dot {
	position: fixed;
	top: 0;
	left: 0;
	width: 8px;
	height: 8px;
	background: #5BB14E;
	border-radius: 50%;
	pointer-events: none;
	transform: translate(-50%, -50%);
	z-index: 99999;
}

/* Hover Effect */
.custom-hover .custom-cursor {
	width: 60px;
	height: 60px;
	background: rgba(13, 110, 253, 0.10);
	border-color: #5BB14E;
}

.client-slider-two {
	padding: 20px 40px;
}

.client-item {
	height: 130px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.client-logo {
	background: #fff;
	border-radius: 10px;
	padding: 15px;
	height: 110px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.client-logo img {
	max-width: 100%;
	max-height: 100px;
	object-fit: contain;
}

/* Navigation Buttons */
.brand-prev,
.brand-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9;
	width: 45px;
	height: 45px;
	background: #5BB14E;
	color: #fff;
	border-radius: 50%;
	text-align: center;
	line-height: 45px;
	cursor: pointer;
}

.brand-prev {
	left: -10px;
}

.brand-next {
	right: -10px;
}

.brand-prev:hover,
.brand-next:hover {
	background: #000;
}

.footer-logo img {
	width: 350px;
}


.key-highlights .highlight-box {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 10px 18px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
	transition: 0.35s ease;
	height: 100%;
}

.highlight-icon {
	width: 42px;
	height: 42px;
	min-width: 42px;
}

.highlight-icon svg {
	width: 100%;
	height: 100%;
}

.highlight-icon circle {
	fill: none;
	stroke: #c7c7c7;
	stroke-width: 2.5;
	transition: 0.35s ease;
}

.highlight-icon path {
	fill: none;
	stroke: #c7c7c7;
	stroke-width: 3;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: 0.35s ease;
}

.highlight-box span:last-child {
	font-size: 16px;
	font-weight: 500;
	color: #222;
	line-height: 1.5;
}

/* Hover Effect */
.highlight-box:hover {
	transform: translateY(-6px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);
}

.highlight-box:hover .highlight-icon circle,
.highlight-box:hover .highlight-icon path {
	stroke: #16a34a;
	/* Green */
}

.section_short_desc {
	color: #000;
	padding-top: 20px;
	font-size: 15px;
	letter-spacing: 0.5px;
}

/* ------------------ */

.partner-inline {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 15px;
	padding: 20px 25px;
	border-radius: 12px;

	/* Glass effect */
	/* background: rgba(255, 255, 255, 0.6); */
	backdrop-filter: blur(10px);

	/* Gradient border */
	border: 1px solid transparent;
	background-clip: padding-box;
	position: relative;
}

.partner-inline::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 12px;
	padding: 1px;
	/* background: linear-gradient(135deg, #22c55e, #0ea5e9, #6366f1);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; */
	mask-composite: exclude;
}

/* Title */
.partner-label {
	font-weight: 700;
	font-size: 18px;
	color: #fff;
	position: relative;
}

/* Badges */
.partner-badges {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	justify-content: center;
}

.badge-item {
	position: relative;
	padding: 8px 18px;
	border-radius: 30px;
	font-size: 14px;
	font-weight: 500;
	color: #0f172a;
	background: #fff;
	border: 1px solid #e5e7eb;
	transition: all 0.3s ease;
}

/* Hover effect */
.badge-item:hover {
	background: linear-gradient(135deg, #5bb14e, #103444);
	color: #fff;
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}

/* ------------- */


#ourClients.tj-client-section {
	background: #f5f5f5;
}

/*  */


/* CARD BASE */
.service-card {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	cursor: pointer;
}

/* HEIGHT VARIANTS */
.service-card.large {
	height: 380px;
}

.service-card.small {
	height: 180px;
}

/* IMAGE */
.service-img {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: transform 0.6s ease;
}

/* ZOOM EFFECT */
.service-card:hover .service-img {
	transform: scale(1.1);
}

/* FULL IMAGE OVERLAY */
.service-overlay {
	position: absolute;
	inset: 0;
	/* full cover */
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 25px;

	/* full dark overlay */
	background: rgb(0 0 0 / 42%);

	transition: all 0.4s ease;
}

/* TEXT */
.service-overlay h3 {
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 5px;
}

.service-overlay span {
	color: #ddd;
	font-size: 16px;
}

/* HOVER EFFECT (overlay darker + lift text) */
.service-card:hover .service-overlay {
	background: rgba(0, 0, 0, 0.65);
}

/* TEXT ANIMATION */
.service-overlay h3,
.service-overlay span {
	transform: translateY(15px);
	opacity: 1;
	transition: 0.4s ease;
}

.service-card:hover .service-overlay h3,
.service-card:hover .service-overlay span {
	transform: translateY(0);
	opacity: 1;
}


/* CONTAINER STYLE */
.content_desc {
	background: #d9e3e3;
	/* soft grey-blue */
	padding: 18px 20px;
	border-left: 4px solid #0ea5a4;
	/* teal border */
	border-radius: 4px;
}

/* TEXT */
.content_desc p {
	margin: 0;
	color: #1f2937;
	line-height: 1.7;
	font-size: 16px;
}


/*  */

/* SECTION */
.it-service-section {
	background: #f5f5f5;
	padding: 100px 0;
}

/* TITLE */
.service-main-title {
	font-size: 35px;
	line-height: 1.2;
	font-weight: 800;
	color: #5BB14E;
	margin-bottom: 20px;
}

.service-main-title span {
	display: block;
}

.service-main-desc {
	font-size: 18px;
	color: #444;
	line-height: 1.7;
}

/* CARD */
.service-card-box {
	background: #fff;
	padding: 50px 35px;
	border-radius: 20px;
	text-align: center;
	height: 100%;

	/* SHADOW */
	box-shadow:
		0 10px 30px rgba(0, 0, 0, 0.08),
		0 2px 8px rgba(0, 0, 0, 0.04);

	transition: all 0.4s ease;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

/* HOVER */
.service-card-box:hover {
	transform: translateY(-10px);
	box-shadow:
		0 20px 50px rgba(139, 28, 125, 0.15),
		0 5px 15px rgba(0, 0, 0, 0.08);
}

/* ICON */
.service-icon {
	margin-bottom: 25px;
}

.service-icon img {
	width: 90px;
	height: auto;
}

/* CARD TITLE */
.service-card-box h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 15px;
	color: #000;
}

/* CARD TEXT */
.service-card-box p {
	font-size: 17px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 30px;
}

/* BUTTON */
.service-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 26px;
	border: 2px solid #5BB14E;
	border-radius: 50px;
	color: #5BB14E;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

/* BUTTON HOVER */
.service-btn:hover {
	background: #5BB14E;
	color: #fff;
}

/* RESPONSIVE */
@media (max-width: 991px) {
	.service-main-title {
		font-size: 38px;
	}

	.service-main-desc {
		font-size: 16px;
	}
}

/* CARD */
.service-card-box {
	position: relative;
	background: #fff;
	padding: 50px 35px;
	border-radius: 20px;
	text-align: center;
	height: 100%;
	overflow: hidden;

	box-shadow:
		0 10px 30px rgba(0, 0, 0, 0.08),
		0 2px 8px rgba(0, 0, 0, 0.04);

	transition: all 0.4s ease;
}

/* TOP BORDER EFFECT */
/* .service-card-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: #5BB14E;
    border-radius: 20px;
    transition: all 0.4s ease;
    transform: translateX(-50%);
} */

/* HOVER */
.service-card-box:hover::before {
	width: 100%;
}

/* CARD HOVER */
.service-card-box:hover {
	transform: translateY(-8px);
	box-shadow:
		0 20px 50px rgba(160, 32, 138, 0.15),
		0 5px 15px rgba(0, 0, 0, 0.08);
	border-top: 3px solid #5BB14E;
}

/*  */

/* SECTION */
.products-section {
	position: relative;
	overflow: hidden;
}

/* OVERLAY */
.products-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgb(0 0 0 / 60%), rgb(0 0 0 / 73%));
	z-index: 1;
}

/* CONTENT ABOVE OVERLAY */
.products-section .container {
	position: relative;
	z-index: 2;
}

.products-desc {
	color: #fff;
}

.products-section {
	position: relative;
	padding: 100px 0;
	overflow: hidden;
	background: url('../images/slider/slider3.jpeg') center center/cover no-repeat;
}

/* PRODUCTS GRID */
.products-section .row.g-4 {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 25px;
	margin-top: 40px !important;
}

/* REMOVE BOOTSTRAP WIDTH */
.products-section .row.g-4>div {
	width: 100%;
	max-width: 100%;
	flex: unset;
	padding: 0;
}

/* CARD */
.product-card {
	background: rgba(255, 255, 255, 0.97);
	border-radius: 22px;
	padding: 10px 10px;
	text-align: center;
	height: 100%;
	min-height: 220px;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	position: relative;
	overflow: hidden;

	transition: all 0.4s ease;

	box-shadow:
		0 10px 30px rgba(0, 0, 0, 0.08),
		0 2px 8px rgba(0, 0, 0, 0.04);
}

/* TOP HOVER BORDER */
/* .product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: #5bb14e;
    transition: 0.4s ease;
    transform: translateX(-50%);
} */

/* HOVER */
.product-card:hover::before {
	width: 100%;
}

.product-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgb(91 177 78 / 16%), 0 10px 20px rgba(0, 0, 0, 0.08);
	border-top: 2px solid #5bb14e;
}

/* ICON */
.product-icon {
	margin-bottom: 20px;
}

/* SVG */
.custom-svg-icon {
	width: 70px;
	height: 70px;
	stroke: #5bb14e;
	stroke-width: 2;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: 0.4s ease;
}

/* ICON HOVER */
.product-card:hover .custom-svg-icon {
	transform: scale(1.1);
	stroke: #8f157b;
}

/* TITLE */
.product-card h4 {
	font-size: 17px;
	line-height: 1.4;
	font-weight: 700;
	color: #111;
	margin: 0;
}

/* LAPTOP */
@media (max-width: 1199px) {
	.products-section .row.g-4 {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* TABLET */
@media (max-width: 991px) {
	.products-section .row.g-4 {
		grid-template-columns: repeat(3, 1fr);
	}

	.products-title {
		font-size: 40px;
	}

	.product-card {
		min-height: 200px;
		padding: 35px 15px;
	}

	.product-card h4 {
		font-size: 18px;
	}
}

/* MOBILE */
@media (max-width: 767px) {
	.products-section .row.g-4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* SMALL MOBILE */
@media (max-width: 480px) {
	.products-section .row.g-4 {
		grid-template-columns: 1fr;
	}
}

/*  */

/* WRAPPER */
.why-wrapper {
	display: flex;
	gap: 14px;
	height: 620px;
}

/* CARD */
.why-card {
	position: relative;
	flex: 1;
	/* ALL EQUAL INITIALLY */
	border-radius: 14px;
	overflow: hidden;
	cursor: pointer;

	background-size: cover;
	background-position: center;

	transition: all 0.6s ease;
}

/* EXPAND ONLY ON HOVER */
.why-wrapper:hover .why-card {
	flex: 1;
}

.why-wrapper .why-card:hover {
	flex: 4;
}

/* OVERLAY */
.why-card .overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	transition: 0.4s ease;
}

/* CONTENT */
.why-content {
	position: absolute;
	left: 35px;
	bottom: 35px;
	z-index: 2;
	color: #fff;
	width: 80%;
}

/* TITLE */
.why-content h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 12px;
}

/* DESC HIDDEN INITIALLY */
.why-content p {
	font-size: 16px;
	line-height: 1.7;

	opacity: 0;
	transform: translateY(20px);

	transition: all 0.4s ease;
}

/* SHOW DESC ON HOVER */
.why-card:hover .why-content p {
	opacity: 1;
	transform: translateY(0);
}

/* DARKER OVERLAY ON HOVER */
.why-card:hover .overlay {
	background: rgba(0, 0, 0, 0.6);
}

/* RESPONSIVE */
@media (max-width: 991px) {

	.why-wrapper {
		flex-direction: column;
		height: auto;
	}

	.why-card {
		height: 320px;
	}

	.why-wrapper .why-card:hover {
		flex: 1;
	}
}

/*  */

/* SECTION */
.stats-section {
	padding: 130px 0;
	background: #f7f7f7;
}

/* BOX */
.stats-box {
	position: relative;
	background: #fff;
	border-radius: 16px;
	padding: 60px 20px 25px;
	text-align: center;

	box-shadow:
		0 8px 25px rgba(0, 0, 0, 0.06),
		0 2px 8px rgba(0, 0, 0, 0.04);

	transition: all 0.4s ease;
}

/* HOVER */
.stats-box:hover {
	transform: translateY(-8px);

	box-shadow:
		0 20px 40px rgba(145, 30, 120, 0.12),
		0 8px 15px rgba(0, 0, 0, 0.08);
}

/* ICON CIRCLE */
.stats-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;

	background: #5bb14e;

	display: flex;
	align-items: center;
	justify-content: center;

	margin: auto;

	position: absolute;
	top: -40px;
	left: 50%;
	transform: translateX(-50%);

	color: #fff;
	font-size: 34px;

	transition: 0.4s ease;
}

/* ICON HOVER */
.stats-box:hover .stats-icon {
	transform: translateX(-50%) scale(1.08);
	background: #5bb14e;
}

/* NUMBER */
.stats-box h3 {
	font-size: 26px;
	font-weight: 800;
	color: #5bb14e;
	margin-bottom: 8px;
	line-height: 1;
}

/* LABEL */
.stats-box p {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	color: #333;
}

/* Mobile View - 2 Products Per Row */
@media (max-width: 767px) {

	.products-section .row {
		--bs-gutter-x: 12px;
		--bs-gutter-y: 12px;
	}

	.products-section .col-6 {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.product-card {
		padding: 20px 12px;
		min-height: 170px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
	}

	.product-card h4 {
		font-size: 14px;
		line-height: 1.4;
		margin-top: 12px;
		margin-bottom: 0;
	}

	.custom-svg-icon {
		width: 45px;
		height: 45px;
	}
}

@media (max-width: 480px) {

	.products-section .col-6 {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.product-card {
		padding: 15px 10px;
		min-height: 150px;
	}

	.product-card h4 {
		font-size: 13px;
		line-height: 1.3;
	}

	.custom-svg-icon {
		width: 40px;
		height: 40px;
	}
}

/* RESPONSIVE */
@media (max-width: 991px) {

	.sec-heading-centered {
		max-width: 98%;
	}

	.hamburger_menu .mean-nav ul li .sub-menu li a {
		display: flex;
	}

	.stats-box:last-child {
		margin-top: 40px;
	}

	.stats-box {
		padding: 55px 15px 20px;
	}

	.stats-box h3 {
		font-size: 36px;
	}

	.stats-box p {
		font-size: 18px;
	}

	.stats-icon {
		width: 70px;
		height: 70px;
		font-size: 28px;
	}
}


.custom-svg-icon {
	width: 70px;
	height: 70px;
	stroke: #5bb14e;
	stroke-width: 2;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: 0.4s ease;
}

.product-card:hover .custom-svg-icon {
	transform: scale(1.1);
	stroke: #5bb14e;
}

/*  */

.stats-svg-icon {
	width: 50px;
	height: 50px;
	stroke: #fff;
	stroke-width: 2;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: 0.4s ease;
}

.stats-box:hover .stats-svg-icon {
	transform: scale(1.1);
}

.service-svg-icon {
	width: 90px;
	height: 90px;
	stroke: #5bb14e;
	stroke-width: 2;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: 0.4s ease;
}

.service-card-box:hover .service-svg-icon {
	transform: scale(1.08);
	stroke: #5bb14e;
}

.h8-testimonial .sec-heading .sec-title {
	color: #fff;
}

/* form */

/* SECTION */
/* .contact-modern-section {
    background: #050505;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
} */

.contact-modern-section {
	position: relative;
	overflow: hidden;
	padding: 110px 0;
	background: url('../images/slider/slider3.jpeg') center center/cover no-repeat;
}

/* OVERLAY */
.contact-modern-section::before {
	content: "";
	position: absolute;
	inset: 0;

	background: rgb(0 0 0 / 74%);
	/* dark overlay */

	z-index: 1;
}

/* CONTENT ABOVE OVERLAY */
.contact-modern-section>* {
	position: relative;
	z-index: 2;
}

/* LEFT */
.contact-left-content {
	color: #fff;
}

.contact-tag {
	display: inline-block;
	background: rgb(82 159 70 / 18%);
	color: #5bb14e;
	padding: 10px 18px;
	border-radius: 50px;
	font-weight: 600;
	margin-bottom: 25px;
	border: 1px solid rgb(91 177 78 / 62%);
}

.contact-title {
	font-size: 30px;
	line-height: 1.2;
	font-weight: 800;
	margin-bottom: 25px;
	color: #fff;
}

.contact-title span {
	color: #5bb14e;
}

.contact-desc {
	font-size: 18px;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.75);
	margin-bottom: 45px;
}

/* INFO */
.contact-info-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-info-item {
	display: flex;
	align-items: center;
	gap: 18px;
}

.info-icon {
	width: 65px;
	height: 65px;
	border-radius: 18px;

	background: linear-gradient(135deg, #5bb14e, #5bb14e);

	display: flex;
	align-items: center;
	justify-content: center;

	color: #fff;
	font-size: 26px;

	box-shadow:
		0 10px 25px rgba(217, 70, 239, 0.25);
}

.info-text span {
	display: block;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 5px;
}

.info-text h5 {
	color: #fff;
	margin: 0;
	font-size: 20px;
}

/* FORM BOX */
.contact-form-box {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);

	backdrop-filter: blur(14px);

	border-radius: 30px;
	padding: 45px;

	box-shadow:
		0 20px 50px rgba(0, 0, 0, 0.35);
}

/* FORM GROUP */
.form-group-modern {
	position: relative;
}

.form-group-modern input,
.form-group-modern textarea,
.form-group-modern select {

	width: 100%;
	border: none;
	outline: none;

	background: rgba(255, 255, 255, 0.04);

	border: 1px solid rgba(255, 255, 255, 0.08);

	color: #fff;

	padding: 10px 22px;
	border-radius: 16px;

	font-size: 16px;

	transition: 0.4s ease;
}

/* PLACEHOLDER */
.form-group-modern input::placeholder,
.form-group-modern textarea::placeholder {
	color: rgba(255, 255, 255, 0.45);
}

/* FOCUS */
.form-group-modern input:focus,
.form-group-modern textarea:focus,
.form-group-modern select:focus {

	border-color: #5bb14e;

	background: rgba(255, 255, 255, 0.06);

	box-shadow:
		0 0 0 4px rgba(217, 70, 239, 0.12);
}

/* SELECT */
.form-group-modern select {
	appearance: none;
	color: rgba(255, 255, 255, 0.7);
}

/* BUTTON */
.contact-submit-btn {
	width: 100%;
	border: none;
	background: linear-gradient(135deg, #5bb14e, #5bb14e);
	color: #fff;
	padding: 10px 25px;
	border-radius: 16px;
	font-size: 18px;
	font-weight: 700;
	transition: 0.4s ease;
	box-shadow: 0 15px 30px rgb(91 177 78 / 19%);
}

/* BUTTON HOVER */
.contact-submit-btn:hover {
	transform: translateY(-3px);

	box-shadow: 0 15px 30px rgb(91 177 78 / 19%);
}

/* RESPONSIVE */
@media (max-width: 991px) {

	.contact-title {
		font-size: 30px;
	}

	.contact-form-box {
		padding: 30px;
	}
}

/* blog */

/* SECTION */
.modern-blog-section {
	padding: 110px 0;
	background: #f8f8f8;
}

/* SUBTITLE */
.blog-subtitle {
	display: inline-block;

	padding: 10px 18px;

	background: rgba(160, 32, 138, 0.08);

	color: #a0208a;

	border-radius: 50px;

	font-weight: 600;
	margin-bottom: 20px;
}

/* TITLE */
.blog-title {
	font-size: 56px;
	line-height: 1.2;
	font-weight: 800;
	color: #111;
	margin-bottom: 20px;
}

/* DESC */
.blog-desc {
	font-size: 18px;
	line-height: 1.8;
	color: #000;
}

/* CARD */
.blog-card-modern {
	background: #fff;
	border-radius: 24px;
	overflow: hidden;

	height: 100%;

	transition: all 0.4s ease;

	box-shadow:
		0 10px 30px rgba(0, 0, 0, 0.06),
		0 2px 10px rgba(0, 0, 0, 0.03);
}

/* HOVER */
.blog-card-modern:hover {
	transform: translateY(-10px);

	box-shadow: 0 25px 60px rgb(91 177 78 / 20%), 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* IMAGE */
.blog-image {
	position: relative;
	overflow: hidden;
}

.blog-image img {
	width: 100%;
	height: 260px;
	object-fit: cover;

	transition: 0.5s ease;
}

/* IMAGE HOVER */
.blog-card-modern:hover .blog-image img {
	transform: scale(1.08);
}

/* DATE */
.blog-date {
	position: absolute;
	bottom: 20px;
	left: 20px;

	background: #5bb14e;
	color: #fff;

	padding: 10px 16px;

	border-radius: 50px;

	font-size: 14px;
	font-weight: 600;

	box-shadow:
		0 10px 25px rgba(160, 32, 138, 0.3);
}

/* CONTENT */
.blog-content {
	padding: 30px;
}

/* CATEGORY */
.blog-category {
	display: inline-block;
	color: #5bb14e;
	font-size: 11px;
	font-weight: 700;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
	border: 1px solid #e1e1e1;
	border-radius: 7px;
	padding: 2px 10px 2px 10px;
}

/* TITLE */
.blog-content h3 {
	font-size: 18px;
	line-height: 1.4;
	margin-bottom: 18px;
}

.blog-content h3 a {
	color: #111;
	text-decoration: none;
	transition: 0.3s ease;
}

/* TITLE HOVER */
.blog-content h3 a:hover {
	color: #5bb14e;
}

/* TEXT */
.blog-content p {
	color: #000;
	line-height: 1.8;
	margin-bottom: 25px;
}

/* READ BTN */
.blog-read-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;

	color: #5bb14e;
	font-weight: 700;
	text-decoration: none;

	transition: 0.3s ease;
}

/* BTN HOVER */
.blog-read-btn:hover {
	gap: 12px;
	color: #5bb14e;
}

/* MAIN BTN */
.all-blog-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	padding: 16px 34px;

	border: 2px solid #5bb14e;
	border-radius: 60px;

	color: #5bb14e;

	font-size: 17px;
	font-weight: 700;

	text-decoration: none;

	transition: 0.4s ease;
}

/* MAIN BTN HOVER */
.all-blog-btn:hover {
	background: #5bb14e;
	color: #fff;

	transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 991px) {

	.blog-title {
		font-size: 30px;
	}

	.blog-content h3 {
		font-size: 24px;
	}
}

.nice-select {
	line-height: 25px;
}

.tj-copyright-area-2 {
	background: #0c1e21;
}


.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
	background-color: #262824;
}

.nice-select .list {
	background-color: #262824;
}

/*  */

/* PAGE HEADER */
.tj-page-header {
	position: relative;
	overflow: hidden;

	min-height: 650px;

	display: flex;
	align-items: center;

	background: url('../images/bg/about-banner.jpg') center center/cover no-repeat;
}

/* DARK OVERLAY */
.tj-page-header::before {
	content: "";
	position: absolute;
	inset: 0;

	background: linear-gradient(90deg,
			rgba(0, 0, 0, 0.75),
			rgba(0, 0, 0, 0.45));

	z-index: 1;
}

/* CONTENT */
.tj-page-header-content {
	position: relative;
	z-index: 2;

	max-width: 100%;
	margin: auto;
}

/* TITLE */
.tj-page-title {
	font-size: 50px;
	line-height: 1.2;
	font-weight: 800;
	color: #fff;

	margin-bottom: 25px;
}

/* TEXT */
.tj-page-header-content p {
	font-size: 17px;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.88);
	margin: 0 auto;
}

/* MOBILE */
@media (max-width: 991px) {

	.tj-page-header {
		min-height: 500px;
		padding: 80px 0;
		background-position: center;
	}

	.tj-page-title {
		font-size: 30px;
	}

	.tj-page-header-content p {
		font-size: 17px;
		line-height: 1.7;
	}
}

/* SMALL MOBILE */
@media (max-width: 575px) {

	.tj-page-header {
		min-height: 420px;
		padding: 70px 0;
	}

	.tj-page-title {
		font-size: 32px;
	}

	.tj-page-header-content p {
		font-size: 15px;
	}
}

/*  */

/* SECTION */
.expertise-grid-section {
	overflow: hidden;
	background: #000;
}

/* GRID */
.expertise-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2px;
}

/* CARD */
.expertise-card {
	position: relative;
	min-height: 420px;

	overflow: hidden;
	cursor: pointer;

	background-size: cover;
	background-position: center;

	isolation: isolate;
}

/* IMAGE LAYER */
.expertise-card::before {
	content: "";
	position: absolute;
	inset: 0;

	background-image: inherit;
	background-size: cover;
	background-position: center;

	transition: transform 0.8s ease;

	z-index: -2;
}

/* IMAGE ZOOM */
.expertise-card:hover::before {
	transform: scale(1.08);
}

/* OVERLAY */
.expertise-overlay {
	position: absolute;
	inset: 0;

	background: linear-gradient(to top,
			rgba(0, 0, 0, 0.8),
			rgba(0, 0, 0, 0.25));

	z-index: -1;

	transition: 0.4s ease;
}

/* OVERLAY HOVER */
.expertise-card:hover .expertise-overlay {
	background: linear-gradient(to top,
			rgba(0, 0, 0, 0.88),
			rgba(0, 0, 0, 0.15));
}

/* CONTENT */
.expertise-content {
	position: absolute;

	left: 50px;
	right: 50px;
	bottom: 50px;

	z-index: 2;

	transition: 0.5s ease;
}

/* TITLE */
.expertise-content h3 {
	color: #fff;

	font-size: 24px;
	line-height: 1.35;
	font-weight: 800;

	margin: 0;
}

/* HIGHLIGHT */
.expertise-content h3 span {
	display: inline;

	background: #5bb14e;
	color: #fff;

	padding: 2px 10px;

	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;

	transition: 0.4s ease;
}

/* HOVER */
.expertise-card:hover .expertise-content h3 span {
	background: #5bb14e;
}

/* CONTENT ANIMATION */
.expertise-content {
	transform: translateY(15px);
}

.expertise-card:hover .expertise-content {
	transform: translateY(0);
}

/* LARGE CARD */
.expertise-card.large {
	min-height: 470px;
}

/* LAPTOP */
@media (max-width: 1399px) {

	.expertise-content {
		left: 40px;
		right: 40px;
		bottom: 40px;
	}
}

/* TABLET */
@media (max-width: 991px) {

	.expertise-grid {
		grid-template-columns: 1fr;
	}

	.expertise-card,
	.expertise-card.large {
		min-height: 340px;
	}

	.expertise-content {
		left: 30px;
		right: 30px;
		bottom: 30px;
	}

	.expertise-content h3 {
		line-height: 1.45;
	}
}

/* MOBILE */
@media (max-width: 767px) {

	.expertise-card,
	.expertise-card.large {
		min-height: 280px;
	}

	.expertise-content {
		left: 20px;
		right: 20px;
		bottom: 20px;
	}

	.expertise-content h3 {
		font-size: 24px;
		line-height: 1.5;
	}

	.expertise-content h3 span {
		padding: 2px 6px;
	}
}

/* SMALL MOBILE */
@media (max-width: 480px) {

	.expertise-card,
	.expertise-card.large {
		min-height: 240px;
	}

	.expertise-content h3 {
		font-size: 20px;
	}
}

/* CARD */
.expertise-card {
	position: relative;
	overflow: hidden;
}

/* FRAME EFFECT */
.expertise-card::after {
	content: "";

	position: absolute;
	top: 30px;
	right: 30px;
	bottom: 30px;
	left: 30px;

	border: 2px solid rgba(255, 255, 255, 0.9);

	box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.15);

	transform: scale3d(1.25, 1.25, 1);

	opacity: 0;

	transition:
		transform 0.55s ease,
		opacity 0.45s ease;

	z-index: 2;

	pointer-events: none;
}

/* HOVER EFFECT */
.expertise-card:hover::after {
	transform: scale3d(1, 1, 1);
	opacity: 1;
}

/* OPTIONAL IMAGE ZOOM */
.expertise-card::before {
	transition: transform 0.8s ease;
}

.expertise-card:hover::before {
	transform: scale(1.06);
}

/* client */

/* SECTION */
.client-logo-section {
	padding: 110px 0;
	background: #f7f7f7;
	overflow: hidden;
}

/* HEADING */
.section-heading {
	margin-bottom: 60px;
}

.sub-title {
	display: inline-block;

	padding: 10px 18px;

	background: rgba(160, 32, 138, 0.08);

	color: #a0208a;

	border-radius: 50px;

	font-weight: 600;

	margin-bottom: 18px;
}

.section-title {
	font-size: 56px;
	font-weight: 800;
	color: #111;
}

/* GRID */
.logo-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 16px;
}

/* CARD */
.logo-card {
	background: #fff;

	height: 160px;

	display: flex;
	align-items: center;
	justify-content: center;

	padding: 25px;

	position: relative;

	overflow: hidden;

	border-radius: 6px;

	transition: 0.5s ease;

	/* opacity: 0;
    transform: translateY(40px);
    animation: logoFadeUp 0.8s ease forwards; */

	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
	transition: all 0.4s ease;
}

/* LOGO */
.logo-card img {
	max-width: 100%;
	max-height: 90px;

	object-fit: contain;

	transition: 0.5s ease;

	/* filter: grayscale(100%); */
}

/* HOVER */
.logo-card:hover {
	transform: translateY(-8px);

	box-shadow:
		0 20px 40px rgba(160, 32, 138, 0.12);
}

.logo-card:hover img {
	transform: scale(1.08);
	filter: grayscale(0%);
}

/* TOP BORDER EFFECT */
.logo-card::before {
	content: "";

	position: absolute;
	top: 0;
	left: 50%;

	width: 0;
	height: 4px;

	background: #5bb14e;

	transition: 0.4s ease;

	transform: translateX(-50%);
}

.logo-card:hover::before {
	width: 100%;
}

/* LOAD ANIMATION */
@keyframes logoFadeUp {

	0% {
		opacity: 0;
		transform: translateY(50px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* RESPONSIVE */
@media (max-width: 1399px) {

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

@media (max-width: 1199px) {

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

@media (max-width: 991px) {

	.section-title {
		font-size: 30px;
	}

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

	.logo-card {
		height: 140px;
		padding: 20px;
	}
}

@media (max-width: 767px) {

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

	.logo-card {
		height: 120px;
	}

	.logo-card img {
		max-height: 70px;
	}
}

@media (max-width: 575px) {

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

	.logo-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.logo-card {
		height: 110px;
		padding: 15px;
	}

	.logo-card img {
		max-height: 60px;
	}
}


/* partners */

/* =========================================================
   PARTNER SECTION
========================================================= */

.partners-section {
	position: relative;
	padding: 110px 0;
	background: #f6f7f8;
	overflow: hidden;
}

/* =========================================================
   HEADING
========================================================= */

.partner-subtitle {
	display: inline-block;
	padding: 10px 18px;

	background: rgba(160, 32, 138, 0.08);
	color: #a0208a;

	border-radius: 50px;

	font-size: 15px;
	font-weight: 600;

	margin-bottom: 18px;
}

.partner-title {
	font-size: 56px;
	line-height: 1.2;
	font-weight: 800;

	color: #111;

	margin-bottom: 18px;
}

.partner-desc {
	max-width: 850px;
	margin: auto;

	font-size: 18px;
	line-height: 1.8;

	color: #000;
}

/* =========================================================
   GRID
========================================================= */

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

/* =========================================================
   CARD
========================================================= */

.partner-category-card {

	position: relative;

	background: #fff;

	border-radius: 24px;

	overflow: hidden;

	transition: 0.45s ease;

	opacity: 0;
	transform: translateY(50px);

	box-shadow:
		0 12px 30px rgba(0, 0, 0, 0.05),
		0 2px 8px rgba(0, 0, 0, 0.03);
}

/* SHOW ANIMATION */
.partner-category-card.show {
	opacity: 1;
	transform: translateY(0);
}

/* TOP BORDER */
.partner-category-card::before {

	content: "";

	position: absolute;

	top: 0;
	left: 50%;

	width: 0;
	height: 4px;

	background: linear-gradient(90deg,
			#47a447,
			#8bc34a);

	transform: translateX(-50%);

	transition: 0.45s ease;

	z-index: 2;
}

/* HOVER */
.partner-category-card:hover::before {
	width: 100%;
}

.partner-category-card:hover {

	transform: translateY(-10px);

	box-shadow:
		0 25px 60px rgba(0, 0, 0, 0.10),
		0 10px 25px rgba(71, 164, 71, 0.10);
}

/* =========================================================
   HEADER
========================================================= */

.partner-category-header {

	background: #eef4ef;

	min-height: 50px;

	display: flex;
	align-items: center;
	justify-content: center;

	text-align: center;

	padding: 20px 25px;

	font-size: 20px;
	line-height: 1.3;
	font-weight: 800;

	color: #1d2a1f;

	border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

/* =========================================================
   LOGO AREA
========================================================= */

.partner-logos {

	padding: 40px;

	display: grid;
	grid-template-columns: repeat(2, 1fr);

	gap: 35px 40px;

	align-items: center;
	justify-items: center;

	min-height: 300px;
}

/* =========================================================
   LOGO IMAGE
========================================================= */

.partner-logos img {

	width: 100%;
	max-width: 170px;

	height: 80px;

	object-fit: contain;

	transition: 0.45s ease;

	filter: grayscale(100%);

	opacity: 0.88;
}

/* HOVER */
.partner-category-card:hover .partner-logos img {
	filter: grayscale(0%);
	opacity: 1;
}

.partner-logos img:hover {
	transform: scale(1.08);
}

/* =========================================================
   RESPONSIVE
========================================================= */

/* LARGE LAPTOP */
@media (max-width: 1399px) {

	.partner-category-header {
		font-size: 28px;
	}
}

/* LAPTOP */
@media (max-width: 1199px) {

	.partners-grid {
		grid-template-columns: 1fr;
	}

	.partner-title {
		font-size: 46px;
	}

	.partner-category-header {
		font-size: 26px;
	}
}

/* TABLET */
@media (max-width: 991px) {

	.partners-section {
		padding: 90px 0;
	}

	.partner-title {
		font-size: 40px;
	}

	.partner-desc {
		font-size: 16px;
	}

	.partner-logos {
		padding: 30px;
		gap: 30px;
	}

	.partner-logos img {
		max-width: 150px;
		height: 70px;
	}
}

/* MOBILE */
@media (max-width: 767px) {

	.partners-grid {
		gap: 24px;
	}

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

	.partner-category-header {

		min-height: auto;

		padding: 18px;

		font-size: 22px;
	}

	.partner-logos {

		grid-template-columns: repeat(2, 1fr);

		gap: 25px;

		min-height: auto;

		padding: 25px;
	}

	.partner-logos img {

		max-width: 130px;

		height: 60px;
	}
}

/* SMALL MOBILE */
@media (max-width: 480px) {

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

	.partner-logos {

		grid-template-columns: 1fr 1fr;

		gap: 20px;

		padding: 20px;
	}

	.partner-logos img {

		max-width: 110px;

		height: 50px;
	}
}

/* contact us */

/* =========================================================
   CONTACT PAGE
========================================================= */

.modern-contact-page {
	position: relative;
	padding: 30px 0;
	background: #f8f8f8;
	overflow: hidden;
}

/* =========================================================
   HEADING
========================================================= */

.contact-page-subtitle {

	display: inline-block;

	padding: 10px 18px;

	background: rgba(160, 32, 138, 0.08);

	color: #a0208a;

	border-radius: 50px;

	font-weight: 600;

	margin-bottom: 18px;
}

.contact-page-title {

	font-size: 30px;
	line-height: 1.2;
	font-weight: 800;

	color: #111;

	margin-bottom: 20px;
}

.contact-page-desc {

	font-size: 18px;
	line-height: 1.8;

	color: #000;
}

/* =========================================================
   LEFT INFO
========================================================= */

.contact-info-wrapper {

	height: 100%;

	padding: 45px;

	border-radius: 30px;

	background: linear-gradient(135deg,
			#111,
			#1d1d1d);

	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.12);
}

/* INFO CARD */
.contact-info-card {

	display: flex;
	gap: 18px;

	margin-bottom: 28px;

	padding-bottom: 28px;

	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ICON */
.contact-info-icon {

	min-width: 65px;
	width: 65px;
	height: 65px;
	border-radius: 18px;
	background: linear-gradient(135deg, #5bb14e, #5bb14e);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 24px;
	box-shadow: 0 10px 30px rgb(91 177 78 / 42%);
}

/* TEXT */
.contact-info-text span {

	display: block;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 8px;
	color: rgb(91 177 78);
}

.contact-info-text h5 {

	color: #fff;
	line-height: 1.7;
	margin: 0;
	font-size: 16px;
}

/* =========================================================
   SOCIAL
========================================================= */

.contact-social-wrapper {

	margin-top: 40px;
}

.contact-social-wrapper h4 {

	color: #fff;

	margin-bottom: 20px;

	font-size: 24px;
}

.contact-social-links {

	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.contact-social-links a {

	width: 52px;
	height: 52px;

	border-radius: 50%;

	background: rgba(255, 255, 255, 0.08);

	display: flex;
	align-items: center;
	justify-content: center;

	color: #fff;

	font-size: 18px;

	transition: 0.4s ease;
}

/* HOVER */
.contact-social-links a:hover {

	background: #60b353;

	transform: translateY(-5px);
}

/* =========================================================
   FORM
========================================================= */

.contact-form-wrapper {

	background: #fff;

	border-radius: 30px;

	padding: 45px;

	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.08);

	height: 100%;
}

/* FORM GROUP */
.modern-form-group input,
.modern-form-group textarea,
.modern-form-group select {

	width: 100%;
	border: none;
	outline: none;
	background: #f5f5f5;
	border: 1px solid transparent;
	padding: 18px 22px;
	border-radius: 16px;
	font-size: 16px;
	transition: 0.4s ease;
	color: #000;
}

.nice-select {
	color: #000;
}

/* FOCUS */
.modern-form-group input:focus,
.modern-form-group textarea:focus,
.modern-form-group select:focus {
	border-color: #5bb14e;
	background: #fff;
	color: #000;
	box-shadow: 0 0 0 4px rgb(91 177 78 / 11%);
}

/* BUTTON */
.contact-submit-btn {

	width: 100%;

	border: none;

	padding: 18px 30px;

	border-radius: 16px;

	background: linear-gradient(135deg, #5bb14e, #5bb14ebf);

	color: #fff;

	font-size: 18px;
	font-weight: 700;

	transition: 0.4s ease;

	box-shadow: 0 25px 50px rgb(120 190 109 / 46%);
}

/* BUTTON HOVER */
.contact-submit-btn:hover {

	transform: translateY(-4px);
	box-shadow: 0 25px 50px rgb(120 190 109 / 46%);
}

/* =========================================================
   MAP
========================================================= */

.contact-map-wrapper {

	overflow: hidden;

	border-radius: 30px;

	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.08);
}

.contact-map-wrapper iframe {

	width: 100%;
	height: 500px;

	border: 0;

	display: block;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

	.contact-page-title {
		font-size: 48px;
	}
}

@media (max-width: 991px) {

	.modern-contact-page {
		padding: 90px 0;
	}

	.contact-page-title {
		font-size: 40px;
	}

	.contact-info-wrapper,
	.contact-form-wrapper {
		padding: 35px;
	}
}

@media (max-width: 767px) {

	.contact-page-title {
		font-size: 32px;
	}

	.contact-page-desc {
		font-size: 16px;
	}

	.contact-info-wrapper,
	.contact-form-wrapper {
		padding: 25px;
		border-radius: 24px;
	}

	.contact-info-card {
		flex-direction: column;
	}

	.contact-info-text h5 {
		font-size: 18px;
	}

	.contact-map-wrapper iframe {
		height: 350px;
	}
}


/* services */

/* =========================================================
GLOBAL
========================================================= */

.section-title {
	font-size: 52px;
	font-weight: 800;
	color: #5bb14e;
	margin-bottom: 15px;
}

.section-line {
	width: 120px;
	height: 4px;
	background: #7bc043;
	border-radius: 20px;
	margin-top: 15px;
}

/* =========================================================
HERO SECTION
========================================================= */

.enterprise-hero-section {
	padding: 120px 0;
	background: #fff;
	position: relative;
	overflow: hidden;
}

.enterprise-hero-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(0, 0, 0, .03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 0, 0, .03) 1px, transparent 1px);

	background-size: 40px 40px;
}

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

.enterprise-tag {
	display: inline-block;
	padding: 10px 18px;
	border-radius: 50px;
	background: rgba(23, 63, 157, .08);
	color: #5bb14e;
	font-weight: 600;
	margin-bottom: 20px;
}

.enterprise-hero-content h1 {
	font-size: 30px;
	line-height: 1.2;
	font-weight: 800;
	color: #111;
}

.enterprise-hero-content h1 span {
	color: #5bb14e;
}

.enterprise-hero-content p {
	font-size: 18px;
	line-height: 1.9;
	color: #000;
	margin: 30px 0;
}

.enterprise-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 18px 34px;
	border-radius: 60px;
	background: #173f9d;
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	transition: .4s ease;
}

.enterprise-btn:hover {
	transform: translateY(-5px);
	background: #102c6f;
}

.enterprise-hero-image {
	position: relative;
	z-index: 2;
	overflow: hidden;
	border-radius: 35px;
	box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.enterprise-hero-image img {
	width: 100%;
	transition: .6s ease;
}

.enterprise-hero-image:hover img {
	transform: scale(1.06);
}

/* =========================================================
DARK SECTION
========================================================= */

.enterprise-dark-section {
	padding: 100px 0;
	background:
		linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .82)),
		url('../images/slider/slider3.jpeg') center center/cover no-repeat;
}

.dark-content h2 {
	color: #fff;
	font-size: 30px;
	font-weight: 800;
	margin-bottom: 25px;
}

.dark-content p {
	color: rgba(255, 255, 255, .8);
	line-height: 1.9;
	margin-bottom: 18px;
}

.dark-list-box {
	background: rgba(255, 255, 255, .05);
	padding: 40px;
	border-radius: 30px;
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, .08);
}

.dark-list-box h4 {
	color: #fff;
	margin-bottom: 25px;
}

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

.dark-list-box li {
	position: relative;
	padding-left: 28px;
	color: rgba(255, 255, 255, .8);
	margin-bottom: 18px;
	line-height: 1.8;
}

.dark-list-box li::before {
	content: "âœ“";
	position: absolute;
	left: 0;
	top: 0;
	color: #7bc043;
	font-weight: 700;
}

/* =========================================================
FEATURE SECTION
========================================================= */
.enterprise-feature-section {
	padding: 100px 0;
}

/* .enterprise-feature-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .82)), url(../images/slider/slider3.jpeg) center center / cover no-repeat;
} */

.feature-card {
	background: #fff;
	padding: 45px 35px;
	border-radius: 28px;
	text-align: center;
	min-height: 220px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .4s ease;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
	transition: all 0.4s ease;
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow:
		0 25px 60px rgba(0, 0, 0, .10);
}

.feature-card p {
	margin: 0;
	color: #000;
	line-height: 1.9;
}

/* =========================================================
SERVICE GRID
========================================================= */

.enterprise-service-grid {
	padding: 110px 0;
	background:
		linear-gradient(rgba(0, 0, 0, .82), rgba(0, 0, 0, .82)),
		url('../images/slider/slider3.jpeg') center center/cover no-repeat;
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.service-box {
	padding: 45px;
	border-radius: 30px;

	background: rgba(255, 255, 255, .05);

	border: 1px solid rgba(255, 255, 255, .08);

	backdrop-filter: blur(10px);

	transition: .4s ease;
}

.service-box:hover {
	transform: translateY(-8px);
	border-color: #7bc043;
}

.service-box h3 {
	color: #fff;
	margin-bottom: 18px;
	font-size: 25px;
}

.service-box p {
	color: #fff;
	line-height: 1.9;
}

/* =========================================================
PARTNER SECTION
========================================================= */

.enterprise-partners-section {
	padding: 110px 0;
	background: #fff;
}

.partner-desc {
	color: #000;
	line-height: 1.9;
	margin-top: 20px;
}

.partner-logo-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 25px;
	margin-top: 60px;
}

.partner-logo-box {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .06);
	border-radius: 20px;
	padding: 30px;
	height: 120px;

	display: flex;
	align-items: center;
	justify-content: center;

	transition: .4s ease;

	box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
}

.partner-logo-box:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, .10);
}

.partner-logo-box img {
	max-width: 100%;
	max-height: 45px;
	object-fit: contain;
}

/* =========================================================
CONTACT SECTION
========================================================= */

.enterprise-contact-section {
	padding: 110px 0;
	background: #f9fafb;
	position: relative;
}

.enterprise-contact-section::before {
	content: "";
	position: absolute;
	inset: 0;

	background-image:
		linear-gradient(rgba(0, 0, 0, .03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 0, 0, .03) 1px, transparent 1px);

	background-size: 40px 40px;
}

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

.contact-content h2 {
	font-size: 30px;
	color: #173f9d;
	font-weight: 800;
}

.contact-content p {
	margin-top: 25px;
	color: #000;
}

.enterprise-contact-form {
	position: relative;
	z-index: 2;

	background: #fff;
	padding: 45px;
	border-radius: 35px;

	border: 2px solid rgba(23, 63, 157, .12);

	box-shadow:
		0 25px 60px rgba(0, 0, 0, .08);
}

.enterprise-contact-form input,
.enterprise-contact-form textarea,
.enterprise-contact-form select {

	width: 100%;

	border: none;
	outline: none;

	background: #f5f5f5;

	border-radius: 14px;

	padding: 16px 18px;

	transition: .4s ease;
}

.enterprise-contact-form input:focus,
.enterprise-contact-form textarea:focus,
.enterprise-contact-form select:focus {
	background: #fff;
	box-shadow: 0 0 0 4px rgba(23, 63, 157, .08);
}

.enterprise-contact-form button {
	border: none;
	background: #173f9d;
	color: #fff;

	padding: 16px 34px;

	border-radius: 14px;

	font-weight: 700;

	transition: .4s ease;
}

.enterprise-contact-form button:hover {
	background: #102c6f;
	transform: translateY(-4px);
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1199px) {

	.enterprise-hero-content h1,
	.contact-content h2 {
		font-size: 54px;
	}

	.section-title {
		font-size: 44px;
	}
}

@media(max-width:991px) {

	.enterprise-hero-section,
	.enterprise-feature-section,
	.enterprise-service-grid,
	.enterprise-contact-section,
	.enterprise-partners-section,
	.enterprise-dark-section {
		padding: 90px 0;
	}

	.service-grid {
		grid-template-columns: 1fr;
	}

	.partner-logo-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.enterprise-hero-content h1,
	.contact-content h2 {
		font-size: 30px;
	}

	.dark-content h2 {
		font-size: 38px;
	}
}

@media(max-width:767px) {

	.partner-logo-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.section-title {
		font-size: 34px;
	}

	.enterprise-hero-content h1,
	.contact-content h2 {
		font-size: 34px;
	}

	.enterprise-contact-form {
		padding: 25px;
	}

	.feature-card,
	.service-box {
		padding: 30px;
	}
}

@media(max-width:575px) {

	.partner-logo-grid {
		grid-template-columns: 1fr;
	}

	.enterprise-hero-content h1,
	.contact-content h2 {
		font-size: 30px;
	}

	.dark-content h2 {
		font-size: 30px;
	}
}

/*  */

/* =========================================================
GLOBAL
========================================================= */

.hci-line {
	width: 90px;
	height: 4px;
	background: #8bc53f;
	border-radius: 30px;
	margin: 22px 0;
}

.center-line {
	margin: 22px auto;
}

.hci-badge {
	display: inline-block;
	padding: 10px 18px;
	border-radius: 50px;
	background: rgba(27, 63, 153, .08);
	color: #5bb14e;
	font-weight: 700;
	margin-bottom: 20px;
}

.hci-section-title {
	font-size: 30px;
	line-height: 1.2;
	font-weight: 800;
	color: #5bb14e;
}

.hci-section-desc {
	color: #000;
	line-height: 1.9;
	font-size: 17px;
}

/* =========================================================
HERO
========================================================= */

.hci-hero-section {
	position: relative;
	padding: 120px 0;
	overflow: hidden;
}

.hci-hero-section::before {
	content: "";
	position: absolute;
	inset: 0;

	background-image:
		linear-gradient(rgba(0, 0, 0, .04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 0, 0, .04) 1px, transparent 1px);

	background-size: 40px 40px;
}

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

.hci-hero-content h1 {
	font-size: 30px;
	line-height: 1.15;
	font-weight: 800;
	color: #111;
}

.hci-hero-content h1 span {
	color: #5bb14e;
}

.hci-hero-content p {
	color: #000;
	line-height: 2;
	font-size: 17px;
	margin-bottom: 35px;
}

.hero-points {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 40px;
}

.hero-point {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #333;
	font-weight: 600;
}

.hero-point i {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #8bc53f;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.hci-main-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	padding: 18px 34px;

	background: #5bb14e;
	color: #fff;
	text-decoration: none;

	border-radius: 60px;

	font-weight: 700;

	transition: .4s ease;
}

.hci-main-btn:hover {
	transform: translateY(-6px);
	background: #102c70;
}

.hci-hero-image {
	position: relative;
	border-radius: 35px;
	overflow: hidden;

	box-shadow:
		0 30px 80px rgba(0, 0, 0, .18);
}

.hci-hero-image img {
	width: 100%;
	transition: .7s ease;
}

.hci-hero-image:hover img {
	transform: scale(1.08);
}

.floating-badge {
	position: absolute;
	bottom: 30px;
	left: 30px;

	background: rgba(255, 255, 255, .12);

	backdrop-filter: blur(14px);

	border: 1px solid rgba(255, 255, 255, .25);

	padding: 20px 28px;

	border-radius: 20px;

	color: #fff;

	font-weight: 600;
}

.floating-badge span {
	display: block;
	font-size: 38px;
	font-weight: 800;
}

/* =========================================================
TABS
========================================================= */

.hci-tabs-section {
	padding: 120px 0;
	background: #fff;
}

.hci-custom-tabs {
	gap: 18px;
	margin-top: 45px;
}

.hci-custom-tabs .nav-link {
	border: none;
	padding: 16px 28px;
	border-radius: 14px;

	background: #edf2ff;
	color: #5bb14e;

	font-weight: 700;

	transition: .4s ease;
}

.hci-custom-tabs .nav-link.active {
	background: #5bb14e;
	color: #fff;

	transform: translateY(-4px);
}

.hci-tab-box {
	background: #fff;

	padding: 45px;

	border-radius: 35px;

	box-shadow:
		0 20px 60px rgba(0, 0, 0, .08);
}

.tab-image-box {
	overflow: hidden;
	border-radius: 28px;
}

.tab-image-box img {
	width: 100%;
	transition: .6s ease;
}

.tab-image-box:hover img {
	transform: scale(1.08);
}

.mini-tag {
	display: inline-block;
	padding: 8px 16px;

	border-radius: 50px;

	background: #eaf1ff;
	color: #5bb14e;

	font-weight: 700;

	margin-bottom: 20px;
}

.tab-content-box h3 {
	font-size: 30px;
	line-height: 1.3;
	font-weight: 800;
	color: #111;
	margin-bottom: 20px;
}

.tab-content-box p {
	color: #000;
	line-height: 1.9;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 35px;
}

.mini-feature {
	background: #f7f9ff;
	padding: 25px;
	border-radius: 20px;
}

.mini-feature h5 {
	color: #5bb14e;
	margin-bottom: 12px;
	font-weight: 700;
}

/* =========================================================
TECH SECTION
========================================================= */

.technical-highlight-section {
	padding: 120px 0;
	background: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .82)), url(../images/slider/slider3.jpeg) center center / cover no-repeat;
}


.tech-left-title h2 {
	color: #5bb14e;
	font-size: 30px;
	font-weight: 800;
	line-height: 1.2;
}

.tech-intro {
	color: #000;
	line-height: 2;
	font-size: 17px;
}

.tech-card {
	position: relative;

	background: rgba(255, 255, 255, .08);

	border: 1px solid rgba(255, 255, 255, .12);

	backdrop-filter: blur(14px);

	padding: 35px;

	border-radius: 24px;

	overflow: hidden;

	transition: .4s ease;
}

.tech-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;

	width: 0;
	height: 4px;

	background: #5bb14e;

	transition: .4s ease;
}

.tech-card:hover::before {
	width: 100%;
}

.tech-card:hover {
	transform: translateY(-10px);
	background: rgba(255, 255, 255, .12);
}

.tech-icon {
	width: 70px;
	height: 70px;

	border-radius: 18px;

	background: #5bb14e;

	display: flex;
	align-items: center;
	justify-content: center;

	color: #fff;

	font-size: 26px;

	margin-bottom: 25px;
}

.tech-card h4 {
	color: #5bb14e;
	margin-bottom: 14px;
	font-size: 20px;
}

.tech-card p {
	color: #000;
	line-height: 1.8;
}

/* =========================================================
CONTACT SECTION
========================================================= */

.hci-contact-section {
	padding: 120px 0;
	position: relative;
}

.hci-contact-section::before {
	content: "";
	position: absolute;
	inset: 0;

	background-image:
		linear-gradient(rgba(0, 0, 0, .04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 0, 0, .04) 1px, transparent 1px);

	background-size: 40px 40px;
}

.contact-glass-box {
	position: relative;
	z-index: 2;

	background: rgba(255, 255, 255, .75);

	backdrop-filter: blur(14px);

	border: 1px solid rgba(255, 255, 255, .3);

	border-radius: 40px;

	padding: 60px;

	box-shadow:
		0 30px 80px rgba(0, 0, 0, .10);
}

.contact-left-content h2 {
	font-size: 30px;
	line-height: 1.2;
	font-weight: 800;
	color: #fff;
}

.contact-left-content p {
	color: #fff;
	line-height: 1.9;
	margin-top: 20px;
}

.modern-hci-form input,
.modern-hci-form textarea,
.modern-hci-form select {

	width: 100%;

	border: none;
	outline: none;

	background: #fff;

	padding: 18px 20px;

	border-radius: 16px;

	transition: .4s ease;

	box-shadow:
		0 8px 25px rgba(0, 0, 0, .05);
}

.modern-hci-form input:focus,
.modern-hci-form textarea:focus,
.modern-hci-form select:focus {
	transform: translateY(-2px);

	box-shadow:
		0 12px 35px rgba(27, 63, 153, .12);
}

.modern-hci-form button {

	border: none;

	padding: 18px 34px;

	border-radius: 16px;

	background: #5bb14e;

	color: #fff;

	font-weight: 700;

	transition: .4s ease;
}

.modern-hci-form button:hover {
	transform: translateY(-5px);
	background: #102c70;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1199px) {

	.hci-hero-content h1,
	.hci-section-title,
	.tech-left-title h2,
	.contact-left-content h2 {
		font-size: 30px;
	}

	.tab-content-box h3 {
		font-size: 30px;
	}
}

@media(max-width:991px) {

	.hci-hero-section,
	.hci-tabs-section,
	.technical-highlight-section,
	.hci-contact-section {
		padding: 90px 0;
	}

	.hci-hero-content h1,
	.hci-section-title,
	.tech-left-title h2,
	.contact-left-content h2 {
		font-size: 30px;
	}

	.feature-grid {
		grid-template-columns: 1fr;
	}

	.contact-glass-box {
		padding: 35px;
	}
}

@media(max-width:767px) {

	.hci-custom-tabs {
		flex-direction: column;
	}

	.hci-hero-content h1,
	.hci-section-title,
	.tech-left-title h2,
	.contact-left-content h2 {
		font-size: 30px;
	}

	.tab-content-box h3 {
		font-size: 28px;
	}

	.hci-tab-box {
		padding: 25px;
	}

	.contact-glass-box {
		padding: 25px;
	}
}

/*  */

.tech-icon svg {
	width: 38px;
	height: 38px;
}

/* ROW */
.technical-highlight-section .row.g-4 {
	align-items: stretch;
}

/* CARD */
.tech-card {
	height: 100%;
	min-height: 320px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
	transition: all 0.4s ease;
	background: #fff;
}

/* CONTENT SPACING */
.tech-card p {
	margin-top: 15px;
	line-height: 1.8;
}

/* MOBILE */
@media (max-width: 991px) {

	.tech-card {
		min-height: auto;
	}

}

/*  */

/* =========================================================
   GLOBAL
========================================================= */
.modern-network-page {
	background: #f5f8fc;
	overflow: hidden;
}

.modern-network-page section {
	position: relative;
	padding: 110px 0;
}

.section-subtitle {
	display: inline-block;
	background: rgba(146, 204, 61, .12);
	color: #7eb82e;
	font-size: 14px;
	font-weight: 700;
	padding: 10px 18px;
	border-radius: 50px;
	margin-bottom: 18px;
	letter-spacing: .5px;
}

.section-heading-modern h2 {
	font-size: 52px;
	line-height: 1.2;
	font-weight: 800;
	color: #173c8f;
	margin-bottom: 20px;
}

.section-heading-modern p {
	max-width: 780px;
	margin: auto;
	font-size: 17px;
	line-height: 1.9;
	color: #000;
}

/* =========================================================
   HERO SECTION
========================================================= */
.modern-hero-section {
	background:
		linear-gradient(135deg, #eef4ff, #f7f9fc);
	overflow: hidden;
}

.modern-hero-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(0, 0, 0, .04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 0, 0, .04) 1px, transparent 1px);
	background-size: 40px 40px;
	opacity: .3;
}

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

.hero-content-modern h1 {
	font-size: 30px;
	line-height: 1.1;
	font-weight: 800;
	color: #173c8f;
	margin-bottom: 25px;
}

.hero-content-modern h1 span {
	color: #8bc53f;
}

.hero-content-modern p {
	font-size: 18px;
	line-height: 1.9;
	color: #000;
	margin-bottom: 20px;
}

/* FEATURES */
.hero-feature-list {
	margin-top: 35px;
}

.hero-feature-item {
	background: #fff;
	padding: 16px 22px;
	border-radius: 16px;
	margin-bottom: 14px;
	font-weight: 600;
	color: #333;

	box-shadow:
		0 10px 30px rgba(0, 0, 0, .05);

	transition: .35s ease;
}

.hero-feature-item:hover {
	transform: translateX(10px);
}

/* BUTTONS */
.hero-btns {
	display: flex;
	gap: 18px;
	margin-top: 35px;
	flex-wrap: wrap;
}

.primary-btn-modern {
	background: linear-gradient(to right, #173c8f, #2f59c7);
	color: #fff;
	padding: 16px 34px;
	border-radius: 14px;
	text-decoration: none;
	font-weight: 700;
	transition: .35s ease;
}

.primary-btn-modern:hover {
	transform: translateY(-4px);
	box-shadow:
		0 15px 35px rgba(23, 60, 143, .25);
}

.outline-btn-modern {
	border: 2px solid #173c8f;
	color: #173c8f;
	padding: 14px 32px;
	border-radius: 14px;
	text-decoration: none;
	font-weight: 700;
	transition: .35s ease;
}

.outline-btn-modern:hover {
	background: #173c8f;
	color: #fff;
}

/* HERO IMAGE */
.hero-image-modern {
	position: relative;
	border-radius: 35px;
	overflow: hidden;

	box-shadow:
		0 25px 70px rgba(0, 0, 0, .18);
}

.hero-image-modern img {
	width: 100%;
	display: block;
	transition: 1s ease;
}

.hero-image-modern:hover img {
	transform: scale(1.08);
}

.hero-image-modern::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top,
			rgba(0, 0, 0, .25),
			transparent 45%);
}

/* FLOATING CARDS */
.floating-card {
	position: absolute;
	background: #fff;
	border-radius: 20px;
	padding: 18px 24px;

	box-shadow:
		0 15px 35px rgba(0, 0, 0, .12);

	animation: floatCard 4s ease-in-out infinite;
}

.floating-card h4 {
	font-size: 30px;
	font-weight: 800;
	color: #173c8f;
	margin-bottom: 4px;
}

.floating-card p {
	margin: 0;
	color: #000;
	font-weight: 600;
}

.card-one {
	top: 30px;
	left: -30px;
}

.card-two {
	bottom: 30px;
	right: -30px;
}

/* =========================================================
   SERVICES
========================================================= */
.service-grid-section {
	background: #fff;
}

.modern-service-card {
	background: #fff;
	border-radius: 30px;
	padding: 45px 35px;
	height: 100%;
	text-align: center;

	position: relative;
	overflow: hidden;

	border: 1px solid rgba(0, 0, 0, .05);

	transition: .45s ease;

	box-shadow:
		0 15px 45px rgba(0, 0, 0, .06);
}

.modern-service-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(to right, #173c8f, #8bc53f);

	transform: scaleX(0);
	transition: .45s ease;
}

.modern-service-card:hover::before {
	transform: scaleX(1);
}

.modern-service-card:hover {
	transform: translateY(-12px);
}

.service-icon-modern {
	width: 95px;
	height: 95px;
	margin: auto auto 30px;

	border-radius: 24px;

	background: linear-gradient(135deg, #173c8f, #2f59c7);

	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 30px;

	box-shadow:
		0 15px 30px rgba(23, 60, 143, .2);
}

.modern-service-card h4 {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 18px;
	color: #173c8f;
}

.modern-service-card p {
	color: #000;
	line-height: 1.9;
}

/* =========================================================
   FEATURE SPLIT
========================================================= */
.feature-split-section {
	background: #f7f9fc;
}

.feature-image-modern {
	border-radius: 30px;
	overflow: hidden;

	box-shadow:
		0 25px 60px rgba(0, 0, 0, .12);
}

.feature-image-modern img {
	width: 100%;
	transition: 1s ease;
}

.feature-image-modern:hover img {
	transform: scale(1.08);
}

.feature-content-modern h2 {
	font-size: 54px;
	font-weight: 800;
	line-height: 1.2;
	color: #173c8f;
	margin-bottom: 25px;
}

.feature-content-modern p {
	color: #000;
	line-height: 1.9;
	margin-bottom: 35px;
}

/* CHECK GRID */
.feature-check-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}

.check-box-modern {
	background: #fff;
	padding: 18px 22px;
	border-radius: 16px;
	font-weight: 600;

	box-shadow:
		0 10px 25px rgba(0, 0, 0, .05);

	transition: .35s ease;
}

.check-box-modern:hover {
	transform: translateY(-6px);
}

/* =========================================================
   INDUSTRIES
========================================================= */
.industries-modern-section {
	background: #fff;
}

.industry-box-modern {
	background: linear-gradient(135deg, #173c8f, #274cb0);

	border-radius: 28px;

	padding: 45px 30px;

	text-align: center;

	color: #fff;

	font-size: 55px;

	transition: .45s ease;

	box-shadow:
		0 18px 45px rgba(23, 60, 143, .15);
}

.industry-box-modern:hover {
	transform: translateY(-10px);
}

.industry-box-modern h4 {
	margin-top: 20px;
	font-size: 26px;
	font-weight: 700;
}


/* =========================================================
   ANIMATIONS
========================================================= */
@keyframes floatCard {
	0% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-12px);
	}

	100% {
		transform: translateY(0px);
	}
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media(max-width:991px) {

	.modern-network-page section {
		padding: 80px 0;
	}

	.hero-content-modern {
		text-align: center;
	}

	.hero-content-modern h1 {
		font-size: 46px;
	}

	.section-heading-modern h2,
	.feature-content-modern h2,
	.contact-left-modern h2 {
		font-size: 38px;
	}

	.feature-check-grid {
		grid-template-columns: 1fr;
	}

	.floating-card {
		display: none;
	}

	.contact-form-modern {
		padding: 30px;
	}

}

@media(max-width:575px) {

	.hero-content-modern h1 {
		font-size: 36px;
	}

	.section-heading-modern h2 {
		font-size: 30px;
	}

	.modern-service-card {
		padding: 35px 25px;
	}

	.feature-content-modern h2,
	.contact-left-modern h2 {
		font-size: 32px;
	}

}

.enterprise-feature-section h3 {
	font-size: 20px;
	color: #5bb14e !important;
}

.industries-section {
	background: linear-gradient(to bottom, #f7f9fc, #eef3ff);
	overflow: hidden;
}

.section-badge {
	background: rgba(140, 198, 63, 0.12);
	color: #8cc63f;
	padding: 8px 18px;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1px;
}

.section-title {
	font-size: 30px;
	font-weight: 800;
	color: #5bb14e;
	margin-bottom: 12px;
}

.section-subtitle {
	color: #6b7280;
	max-width: 650px;
	margin: auto;
	font-size: 16px;
}

.industry-card {
	position: relative;
	background: #fff;
	border-radius: 22px;
	padding: 35px 28px;
	height: 100%;
	overflow: hidden;
	transition: all 0.4s ease;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.industry-card::before {
	content: "";
	position: absolute;
	width: 180px;
	height: 180px;
	background: rgb(91 177 78 / 10%);
	border-radius: 50%;
	top: -80px;
	right: -70px;
	transition: 0.4s ease;
}

.industry-card:hover {
	transform: translateY(-10px);
	background: transparent;
	box-shadow: 0 20px 45px rgb(91 177 78 / 25%);
	border-top: 3px solid #5bb14e;
}

.industry-card:hover::before {
	transform: scale(1.2);
}

.icon-box {
	width: 72px;
	height: 72px;
	background: rgba(140, 198, 63, 0.12);
	border: 2px solid rgba(140, 198, 63, 0.4);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 25px;
	transition: all 0.4s ease;
}

.industry-card:hover .icon-box {
	background: #8cc63f;
	transform: rotate(-5deg) scale(1.05);
}

.icon-box svg {
	width: 34px;
	height: 34px;
	color: #8cc63f;
	transition: 0.4s ease;
}

.industry-card:hover .icon-box svg {
	color: #fff;
}

.industry-card h4 {
	color: #5bb14e;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 15px;
}

.industry-card p {
	color: #000;
	line-height: 1.8;
	font-size: 15px;
	margin-bottom: 25px;
}

.industry-link {
	color: #8cc63f;
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: 0.3s ease;
}

.industry-link svg {
	width: 18px;
	height: 18px;
	transition: 0.3s ease;
}

.industry-link:hover {
	color: #fff;
}

.industry-link:hover svg {
	transform: translateX(5px);
}

@media(max-width:991px) {
	.section-title {
		font-size: 34px;
	}
}

@media(max-width:767px) {
	.section-title {
		font-size: 28px;
	}

	.industry-card {
		padding: 30px 24px;
	}
}

/*  */

/* =========================
   GLOBAL
========================= */

.section-heading h2 {
	font-size: 30px;
	font-weight: 800;
	color: #5bb14e;
	margin-bottom: 15px;
}

.section-heading p {
	color: #000;
	font-size: 17px;
}

.section-line {
	width: 90px;
	height: 4px;
	background: #9ad13a;
	margin: 15px auto 0;
	border-radius: 50px;
}

/* =========================
   HERO
========================= */

.cyber-hero-section {
	padding: 120px 0;
	background: #f8fafc;
	position: relative;
}

.cyber-badge {
	background: #9ad13a;
	color: #111;
	padding: 10px 22px;
	border-radius: 50px;
	display: inline-block;
	font-weight: 700;
	margin-bottom: 25px;
}

.cyber-hero-content h1 {
	font-size: 30px;
	font-weight: 800;
	line-height: 1.2;
	color: #1d2b64;
}

.cyber-hero-content p {
	font-size: 18px;
	color: #000;
	line-height: 1.9;
	margin-top: 25px;
}

.hero-btns {
	margin-top: 40px;
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.btn-primary-custom {
	background: #5bb14e;
	color: #fff;
	padding: 15px 35px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	transition: .4s;
}

.btn-outline-custom {
	border: 2px solid #5bb14e;
	color: #5bb14e;
	padding: 15px 35px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	transition: .4s;
}

.btn-primary-custom:hover,
.btn-outline-custom:hover {
	transform: translateY(-5px);
}

.hero-image-wrap {
	position: relative;
}

.hero-image-wrap img {
	width: 100%;
	border-radius: 30px;
	box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
}

/* =========================
   GUIDELINE CARD
========================= */

.security-guideline-section {
	padding: 110px 0;
}

.guideline-card {
	background: #fff;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
	transition: .5s;
	height: 100%;
}

.guideline-card:hover {
	transform: translateY(-10px);
}

.guide-img {
	overflow: hidden;
}

.guide-img img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	transition: .6s;
}

.guideline-card:hover img {
	transform: scale(1.08);
}

.guide-content {
	padding: 30px;
}

.guide-content h4 {
	color: #5bb14e;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 15px;
}

.guide-content p {
	color: #000;
	line-height: 1.8;
}

/* =========================
   FRAMEWORK
========================= */

.framework-section {
	padding: 110px 0;
	background: #f8fafc;
}

.framework-card {
	position: relative;
	overflow: hidden;
	border-radius: 24px;
}

.framework-card img {
	width: 100%;
	height: 450px;
	object-fit: cover;
	transition: .6s;
}

.framework-card:hover img {
	transform: scale(1.08);
}

.framework-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, .85), transparent);
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.framework-overlay h4 {
	color: #fff;
	font-size: 30px;
	font-weight: 700;
}

.framework-overlay p {
	color: #ddd;
}

/* =========================
   DARK SECTION
========================= */

.dark-security-section {
	position: relative;
	padding: 110px 0;
	background: url(../images/slider/slider3.jpeg) center center / cover no-repeat;
}

.dark-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .8);
}

.dark-left-content h2 {
	color: #fff;
	font-size: 30px;
	font-weight: 800;
}

.dark-left-content p {
	color: #d6d6d6;
	line-height: 1.9;
	margin-top: 25px;
}

.security-points {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.security-point {
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .1);
	padding: 20px;
	border-radius: 18px;
	color: #fff;
	backdrop-filter: blur(12px);
}

/* =========================
   FORTANIX
========================= */

.fortanix-section {
	padding: 110px 0;
}

.fort-card {
	background: #fff;
	padding: 45px;
	border-radius: 24px;
	box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
	height: 100%;
	transition: .5s;
}

.fort-card:hover {
	transform: translateY(-10px);
}

.fort-card h4 {
	font-size: 25px;
	color: #5bb14e;
	font-weight: 700;
	margin-bottom: 20px;
}

.fort-card p {
	color: #000;
	line-height: 1.9;
}

.fort-card ul {
	margin-top: 25px;
}

.fort-card ul li {
	margin-bottom: 12px;
	color: #444;
}

.fort-logo {
	margin-top: 40px;
}

.fort-logo img {
	max-width: 220px;
}

/* =========================
   XAGE
========================= */

.xage-section {
	padding: 120px 0;
	background: #f5f5f5;
	position: relative;
}

.xage-section::before {
	content: "";
	position: absolute;
	inset: 0;
	/* background: rgba(0, 0, 0, .82); */
}

.xage-section .container {
	position: relative;
	z-index: 2;
}

.xage-card {
	background: #fff;
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 26px;
	padding: 40px;
	backdrop-filter: blur(12px);
	height: 100%;
	transition: .5s;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
	transition: all 0.4s ease;
}

.xage-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(154, 209, 58, .15);
}

.xage-card h4 {
	color: #5bb14e;
	font-size: 23px;
	font-weight: 700;
	margin-bottom: 25px;
}

.xage-card ul {
	padding-left: 20px;
}

.xage-card ul li {
	color: #000;
	margin-bottom: 12px;
}

.xage-card img {
	max-width: 180px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px) {

	.cyber-hero-content h1 {
		font-size: 30px;
	}

	.section-heading h2 {
		font-size: 30px;
	}

	.dark-left-content h2 {
		font-size: 30px;
	}

	.security-points {
		grid-template-columns: 1fr;
	}

	.framework-card img {
		height: 320px;
	}

}


/*  */

/* =========================
   GLOBAL
========================= */

.section-heading h2 {
	font-size: 30px;
	font-weight: 800;
	color: #5bb14e;
}

.heading-line {
	width: 90px;
	height: 4px;
	background: #9ad13a;
	margin: 18px auto 0;
	border-radius: 50px;
}

/* =========================
   SERVICES
========================= */

.dc-services-section {
	padding: 110px 0;
	background: #f8fafc;
}

.dc-service-card {
	background: #fff;
	border-radius: 26px;
	overflow: hidden;
	box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
	transition: .5s;
	height: 100%;
}

.dc-service-card:hover {
	transform: translateY(-10px);
}

.dc-img {
	position: relative;
	overflow: hidden;
}

.dc-img img {
	width: 100%;
	height: 320px;
	object-fit: cover;
	transition: .7s;
}

.dc-service-card:hover img {
	transform: scale(1.08);
}

.dc-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, .55), transparent);
}

.dc-content {
	padding: 35px;
}

.dc-content h4 {
	color: #5bb14e;
	font-size: 23px;
	font-weight: 700;
	margin-bottom: 20px;
}

.dc-content ul {
	padding-left: 20px;
}

.dc-content ul li {
	color: #000;
	margin-bottom: 12px;
}

/* =========================
   EXECUTION
========================= */

.execution-support-section {
	padding: 120px 0;
	position: relative;
	background: url(../images/slider/slider3.jpeg) center center / cover no-repeat;
}

.execution-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .82);
}

.execution-support-section .section-heading h2,
.execution-support-section .section-heading p {
	color: #fff;
}

.support-box {
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .08);
	padding: 35px;
	border-radius: 22px;
	text-align: center;
	backdrop-filter: blur(12px);
	transition: .5s;
	height: 100%;
}

.support-box:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(154, 209, 58, .12);
}

.support-icon {
	width: 70px;
	height: 70px;
	background: #5bb14e;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto auto 25px;
	font-size: 28px;
	font-weight: 700;
	color: #fff;
}

.support-box h5 {
	color: #fff;
	font-size: 20px;
	font-weight: 700;
}

/* =========================
   CONSULTING
========================= */

.consulting-section {
	padding: 110px 0;
}

.consult-card {
	position: relative;
	overflow: hidden;
	border-radius: 24px;
}

.consult-card img {
	width: 100%;
	height: 320px;
	object-fit: cover;
	transition: .7s;
}

.consult-card:hover img {
	transform: scale(1.08);
}

.consult-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, .82), transparent);
	display: flex;
	align-items: flex-end;
	padding: 40px;
}

.consult-overlay h4 {
	color: #fff;
	font-size: 25px;
	font-weight: 700;
}

/* =========================
   WHY MICRO
========================= */

.why-micro-section {
	padding: 120px 0;
	position: relative;
	background: url(../images/slider/slider3.jpeg) center center / cover no-repeat;
}

.why-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .82);
}

.why-micro-section .section-heading h2 {
	color: #fff;
}

.why-box {
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .08);
	padding: 35px;
	border-radius: 22px;
	text-align: center;
	backdrop-filter: blur(12px);
	transition: .5s;
	height: 100%;
}

.why-box:hover {
	transform: translateY(-10px);
}

.why-box h5 {
	color: #fff;
	font-size: 20px;
	font-weight: 600;
}

/* =========================
   CERTIFIED
========================= */

.certified-section {
	padding: 100px 0;
	background: #f8fafc;
}

.certified-box {
	background: #fff;
	border-radius: 28px;
	padding: 70px;
	text-align: center;
	box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.certified-box h2 {
	color: #5bb14e;
	font-size: 30px;
	font-weight: 800;
}

.certified-box p {
	max-width: 900px;
	margin: auto;
	color: #000;
	line-height: 1.9;
	margin-top: 30px;
}

/* =========================
   OEM
========================= */

.oem-section {
	padding: 120px 0;
	position: relative;
	/* background: url(../images/slider/slider3.jpeg) center center / cover no-repeat; */
	background: #f5f5f5;
}

.oem-overlay {
	position: absolute;
	inset: 0;
	/* background: rgba(0, 0, 0, .82); */
}

.oem-left h2 {
	color: #5bb14e;
	font-size: 30px;
	font-weight: 800;
}

.oem-left p {
	color: #000;
	line-height: 1.9;
	margin-top: 25px;
}

.oem-logo-box {
	background: #fff;
	border-radius: 20px;
	padding: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 140px;
	transition: .5s;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
	transition: all 0.4s ease;
}

.oem-logo-box:hover {
	transform: translateY(-10px);
}

.oem-logo-box img {
	max-width: 100%;
	max-height: 70px;
	object-fit: contain;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px) {

	.section-heading h2 {
		font-size: 30px;
	}

	.dc-img img {
		height: 240px;
	}

	.consult-card img {
		height: 240px;
	}

	.consult-overlay h4 {
		font-size: 24px;
	}

	.certified-box {
		padding: 40px 25px;
	}

	.certified-box h2 {
		font-size: 30px;
	}

	.oem-left h2 {
		font-size: 30px;
	}

}

/*  */

/* =========================
    GLOBAL
========================= */

.section-title h2 {
	font-size: 48px;
	font-weight: 800;
	color: #5bb14e;
}

.title-line {
	width: 90px;
	height: 4px;
	background: #97cf3d;
	margin: 18px auto 0;
	border-radius: 50px;
}

/* =========================
    HERO SECTION
========================= */

.fms-hero-section {
	padding: 120px 0;
	background: #f7f9fc;
	position: relative;
}

.fms-badge {
	display: inline-block;
	background: #97cf3d;
	color: #111;
	font-weight: 700;
	padding: 10px 22px;
	border-radius: 50px;
	margin-bottom: 25px;
}

.fms-left-content h2 {
	font-size: 54px;
	font-weight: 800;
	color: #5bb14e;
	line-height: 1.2;
}

.fms-left-content h2 span {
	color: #97cf3d;
}

.fms-line {
	width: 90px;
	height: 4px;
	background: #97cf3d;
	margin: 25px 0;
	border-radius: 50px;
}

.fms-left-content p {
	color: #666;
	font-size: 18px;
	line-height: 1.9;
}

.fms-points {
	margin-top: 35px;
}

.fms-point {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 18px;
}

.fms-check {
	width: 34px;
	height: 34px;
	background: #5bb14e;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	flex-shrink: 0;
}

.fms-image-box {
	position: relative;
	border-radius: 35px;
	overflow: hidden;
	box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
}

.fms-image-box img {
	width: 100%;
	height: 520px;
	object-fit: cover;
	transition: .7s;
}

.fms-image-box:hover img {
	transform: scale(1.08);
}

.fms-glow {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, .3), transparent);
}

/* =========================
    FEATURE CARDS
========================= */

.fms-feature-section {
	padding: 110px 0;
	background: #fff;
}

.fms-card {
	background: #fff;
	border-radius: 24px;
	padding: 40px 35px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
	transition: .5s;
	height: 100%;
	border: 1px solid #eef2f7;
}

.fms-card:hover {
	transform: translateY(-12px);
	box-shadow: 0 20px 50px rgba(36, 64, 142, .12);
}

.fms-icon {
	width: 80px;
	height: 80px;
	background: #5bb14e;
	border-radius: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 34px;
	margin-bottom: 30px;
}

.fms-card h4 {
	font-size: 20px;
	font-weight: 700;
	color: #5bb14e;
	margin-bottom: 18px;
}

.fms-card p {
	color: #666;
	line-height: 1.9;
}

/* =========================
    PROJECT SUPPORT
========================= */

.project-support-section {
	padding: 120px 0;
	/* background: url(../images/slider/slider3.jpeg) center / cover no-repeat; */
	position: relative;
}

.project-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .82);
}

.project-support-section .section-title h2 {
	color: #fff;
}

.project-main-box,
.project-small-box {
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .08);
	backdrop-filter: blur(14px);
	border-radius: 28px;
	padding: 40px;
	height: 100%;
	transition: .5s;
}

.project-main-box:hover,
.project-small-box:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(151, 207, 61, .12);
}

.project-main-box h3,
.project-small-box h4 {
	color: #fff;
	font-weight: 700;
	font-size: 22px;
}

.project-main-box p,
.project-small-box p {
	color: #d5d5d5;
	line-height: 1.8;
	margin-top: 15px;
}

/* =========================
    COMPLIANCE
========================= */

.compliance-section {
	padding: 110px 0;
	background: #f8fafc;
}

.compliance-box {
	text-align: center;
	transition: .5s;
}

.compliance-box:hover {
	transform: translateY(-10px);
}

.compliance-icon {
	width: 85px;
	height: 85px;
	background: #5bb14e;
	border-radius: 50%;
	margin: auto auto 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	color: #fff;
	box-shadow: 0 10px 30px rgba(151, 207, 61, .25);
}

.compliance-box p {
	font-weight: 700;
	color: #444;
	line-height: 1.5;
}

/* =========================
    SERVICE SUPPORT
========================= */

.service-support-section {
	padding: 120px 0;
	position: relative;
	background: #f5f5f5;
}

.service-overlay {
	position: absolute;
	inset: 0;
	background: #f5f5f5;
}

.service-support-section .section-title h2 {
	color: #5bb14e;
}

.support-card {
	border: 1px solid rgba(255, 255, 255, .08);
	padding: 45px;
	backdrop-filter: blur(14px);
	background: #fff;
	border-radius: 20px;
	text-align: center;
	height: 100%;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
	transition: all 0.4s ease;
}

.support-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(151, 207, 61, .12);
}

.support-card p {
	color: #000;
	font-size: 18px;
	line-height: 1.9;
	margin: 0;
}

/* =========================
    RESPONSIVE
========================= */

@media(max-width:991px) {

	.fms-left-content h2 {
		font-size: 30px;
	}

	.section-title h2 {
		font-size: 30px;
	}

	.fms-image-box img {
		height: 380px;
	}

	.fms-card {
		padding: 35px 25px;
	}

}

.fms-icon svg {
	width: 38px;
	height: 38px;
	stroke: #fff;
	stroke-width: 2.5;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/*  */

/* =========================
    GLOBAL
========================= */

.section-title h2 {
	font-size: 30px;
	font-weight: 800;
	color: #5bb14e;
}

.title-line {
	width: 90px;
	height: 4px;
	background: #98cf3c;
	margin: 18px auto 0;
	border-radius: 50px;
}

.section-desc {
	color: #666;
	margin-top: 25px;
	font-size: 18px;
}

/* =========================
    HERO SECTION
========================= */

.endpoint-hero-section {
	padding: 120px 0;
	background: #f8fbff;
}

.endpoint-badge {
	display: inline-block;
	background: #98cf3c;
	color: #111;
	padding: 10px 24px;
	border-radius: 50px;
	font-weight: 700;
	margin-bottom: 25px;
}

.endpoint-content h2 {
	font-size: 30px;
	font-weight: 800;
	color: #5bb14e;
	line-height: 1.2;
}

.endpoint-content h2 span {
	color: #98cf3c;
}

.endpoint-line {
	width: 90px;
	height: 4px;
	background: #98cf3c;
	margin: 28px 0;
}

.endpoint-content p {
	color: #666;
	line-height: 1.9;
	margin-bottom: 20px;
}

.endpoint-list {
	margin-top: 35px;
}

.endpoint-item {
	margin-bottom: 15px;
	font-weight: 600;
	color: #5bb14e;
}

.endpoint-image-box {
	position: relative;
	overflow: hidden;
	border-radius: 35px;
	box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.endpoint-image-box img {
	width: 100%;
	height: 560px;
	object-fit: cover;
	transition: .8s;
}

.endpoint-image-box:hover img {
	transform: scale(1.08);
}

.endpoint-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, .3), transparent);
}

/* =========================
    DARK SECTION
========================= */

.endpoint-dark-section {
	padding: 120px 0;
	position: relative;
	background: url('../images/slider/slider3.jpeg') center/cover no-repeat;
}

.endpoint-dark-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .82);
}

.endpoint-dark-card {
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 32px;
	padding: 50px;
	backdrop-filter: blur(14px);
	transition: .5s;
	height: 100%;
}

.endpoint-dark-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(152, 207, 60, .12);
}

.endpoint-icon {
	width: 85px;
	height: 85px;
	background: #5bb14e;
	border-radius: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	margin-bottom: 30px;
}

.endpoint-dark-card h3 {
	color: #fff;
	font-size: 22px;
	font-weight: 700;
}

.small-line {
	width: 70px;
	height: 4px;
	background: #5bb14e;
	margin: 18px 0 28px;
}

.endpoint-dark-card p {
	color: #d6d6d6;
	line-height: 2;
}

/* =========================
    PARTNERS
========================= */

.partner-section {
	padding: 110px 0;
	background: #fff;
}

.partner-card {
	background: #fff;
	border-radius: 20px;
	padding: 35px;
	height: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #edf1f7;
	transition: .4s;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.partner-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(36, 64, 142, .12);
}

.partner-card img {
	max-width: 100%;
	max-height: 55px;
	object-fit: contain;
}

/* =========================
    TECH SECTION
========================= */

.laptop-tech-section {
	padding: 120px 0;
	background: #f8fbff;
}

.side-heading span {
	display: inline-block;
	color: #5bb14e;
	font-weight: 700;
	margin-bottom: 18px;
}

.side-heading h2 {
	font-size: 30px;
	font-weight: 800;
	color: #5bb14e;
	line-height: 1.2;
}

.side-line {
	width: 90px;
	height: 4px;
	background: #98cf3c;
	margin-top: 22px;
}

.tech-card {
	background: #fff;
	border-radius: 28px;
	padding: 40px 35px;
	height: 100%;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
	transition: .5s;
	border: 1px solid #edf2f7;
}

.tech-card:hover {
	transform: translateY(-12px);
	box-shadow: 0 20px 40px rgba(36, 64, 142, .12);
}

.tech-icon {
	width: 70px;
	height: 70px;
	background: #5bb14e;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	margin-bottom: 25px;
}

.tech-card h4 {
	color: #5bb14e;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 18px;
}

.tech-card p {
	color: #000;
	line-height: 1.9;
}

/* =========================
    DESKTOP SECTION
========================= */

.desktop-tech-section {
	padding: 120px 0;
	background: transparent;
}

.desktop-card {
	background: #fff;
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 28px;
	padding: 40px;
	height: 100%;
	backdrop-filter: blur(12px);
	transition: .5s;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
	transition: all 0.4s ease;
}

.desktop-card:hover {
	transform: translateY(-10px);
	background: rgba(255, 255, 255, .12);
}

.desktop-card h4 {
	color: #5bb14e;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 22px;
}

.desktop-card ul {
	padding-left: 18px;
	margin: 0;
}

.desktop-card ul li {
	color: #000;
	line-height: 2;
}

/* =========================
    RESPONSIVE
========================= */

@media(max-width:991px) {

	.endpoint-content h2 {
		font-size: 30px;
	}

	.section-title h2 {
		font-size: 38px;
	}

	.side-heading h2 {
		font-size: 38px;
	}

	.endpoint-image-box img {
		height: 400px;
	}

	.endpoint-dark-card {
		padding: 35px;
	}

}


.tech-icon svg {
	width: 34px;
	height: 34px;

	stroke: #fff;
	stroke-width: 2.5;
	fill: none;

	stroke-linecap: round;
	stroke-linejoin: round;
}


/* =========================
   DROPDOWN MENU DESIGN
========================= */

.has-dropdown {
	position: relative;
}

/* MAIN MENU */
.has-dropdown>a {
	display: flex;
	align-items: center;
	gap: 12px;

	padding: 16px 22px;

	font-size: 18px;
	font-weight: 600;
	color: #243b63;

	text-decoration: none;
	transition: 0.3s ease;
}

/* PLUS ICON */
.dropdown-plus {
	margin-left: auto;
	font-size: 14px;
	color: #111;
}

/* SUBMENU */
.sub-menu {
	position: absolute;
	top: 100%;
	left: 0;

	width: 340px;

	background: #fff;

	border-radius: 14px;

	padding: 12px 0;
	margin: 0;

	list-style: none;

	box-shadow:
		0 10px 40px rgba(0, 0, 0, 0.08);

	z-index: 99;
}

/* SUBMENU ITEM */
.sub-menu li {
	width: 100%;
}

/* SUBMENU LINK */
.sub-menu li a {
	display: flex;

	align-items: flex-start;
	/* IMPORTANT */

	gap: 16px;

	width: 100%;

	padding: 18px 24px;

	color: #40576a;

	font-size: 17px;
	font-weight: 500;
	line-height: 1.6;

	text-decoration: none;

	transition: all 0.3s ease;

	position: relative;
}

/* HOVER */
.sub-menu li a:hover {
	background: #f7f8fc;
	color: #2d4b63;
	padding-left: 30px;
}

/* SVG ICON */
.menu-main-icon,
.submenu-icon {
	width: 28px;
	height: 28px;

	min-width: 28px;
	/* IMPORTANT */

	display: flex;
	align-items: center;
	justify-content: center;

	margin-top: 2px;
	/* IMPORTANT */

	stroke: #72c466;
	stroke-width: 2;

	fill: none;

	stroke-linecap: round;
	stroke-linejoin: round;

	transition: 0.3s ease;
}

/* ICON HOVER */
.sub-menu li a:hover .submenu-icon {
	transform: scale(1.08);
	stroke: #58b54b;
}

/* RIGHT PLUS */
.sub-menu li a .fa-plus {
	margin-left: auto;

	font-size: 13px;

	color: #111;

	margin-top: 8px;

	flex-shrink: 0;
}

/* MOBILE */
@media (max-width:991px) {

	.sub-menu {
		width: 100%;
		position: relative;
		box-shadow: none;
		border-radius: 0;
	}

	.sub-menu li a {
		font-size: 16px;
		padding: 16px 18px;
	}

}



h2 {
	font-size: 30px;
}


.contact-info-icon {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: #7abf6f;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact-info-icon svg {
	width: 28px;
	height: 28px;
	color: #fff;
}