/* ===== RESET ===== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

html {
	scroll-behavior: smooth;
}

body {
	line-height: 1.6;
	color: #333;
	overflow-x: hidden;
	background: #fff;
}

a { text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== TOP BAR ===== */
.top-bar {
	background: #1E91D6;
	color: white;
	padding: 14px 0;
	font-size: 15px;
	position: relative;
	z-index: 20;
}

.top-bar-container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.contact-info {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 400;
}

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

.hover-this {
	transition: all 0.3s ease;
}

.header ul li a {
	transition: transform 0.1s linear;
}
.header nav .cursor{
	position: fixed;
	left: 0px !important;
	top: 6% !important;
	width: 30px;
	height: 30px;
	border: 2px solid #24bcff;
	border-radius: 50%;
	pointer-events: none;
	transition: transform 0.25s ease,
	background 0.25s ease;
}
.hover-this:hover ~ .cursor {
	transform: translate(-50%, -50%) scale(8);
}

/* ===== HERO WRAPPER WITH BACKGROUND IMAGE ===== */
.hero-wrapper {
	position: relative;
	width: 100%;
	min-height: 750px;

	/* BACKGROUND IMAGE - Forward slashes use karein 
	background-image: url('/wp-content/uploads/2026/05/banner-image.webp');
	background-size: 100% 100%;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden; */
}

/* ===== HEADER ===== */
.header {
	background-color:#00132d;
	position: relative;
	z-index: 10;
	padding: 20px 0;
}
.header.sticky
{
	position:fixed;
	width:100%;
	top:0;
	left:0;
	/* 	animation:stickyHeader .3s ease; */
}

/* @keyframes stickyHeader{
from{
transform:translateY(-100%);
}
to{
transform:translateY(0);
}
} */
.header-container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.logo img {
	width: 200px;
	object-fit: cover;
}

.navbar ul {
	display: flex;
	gap: 40px;
}

.navbar a {
	color: #FFF;
	font-weight: 500;
	font-size: 16px;
	transition: 0.3s;
}

.navbar a:hover,
.navbar a.active {
	color: #1E91D6;
}

.btn-touch {
	background: #2ecc71;
	color: white;
	padding: 12px 26px;
	border-radius: 6px;
	font-weight: 500;
	font-size: 15px;
	transition: 0.3s;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}
/* Smooth Animation */

@keyframes submenuFade{

	from{
		opacity: 0;
		transform: translateY(15px);
	}

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

}
/* Submenu Style */
#primary-menu .sub-menu {
	display: none;
	position: absolute;
	top: 50%;
	left: 60%;
	min-width: 260px;
	background: #0f172a;
	border-radius: 14px;
	padding: 12px 0;
	transform: translateY(10px);
	transition: all 0.3s ease;
	box-shadow: 0 15px 40px rgba(0,0,0,0.12);
	animation: submenuFade 0.35s ease;
}

/* Show submenu on hover */
#primary-menu li:hover > .sub-menu {
	display:block;

}

/* Submenu Items */
#primary-menu .sub-menu li {
	padding: 2%;
}

#primary-menu .sub-menu li a {
	padding: 12px 22px;
	color: #ffffff;
	width: 100%;
	transition: 0.3s ease;
	white-space: nowrap;
}

/* Hover Effect */
#primary-menu .sub-menu li a:hover {
	background: rgba(0, 180, 255, 0.12);
	color: #00b4ff;
	padding-left: 28px;
}


/* Mobile Responsive */
@media (max-width: 991px) {
	#primary-menu .sub-menu {
		display: block;
		position: absolute;
		top: 100%;
		left: 42%;
		min-width: 260px;
		background: #0f172a;
		border-radius: 14px;
		padding: 12px 0;
		opacity: 0;
		visibility: hidden;
		transform: translateY(10px);
		transition: all 0.3s ease;
		box-shadow: 0 15px 40px rgba(0,0,0,0.12);
		z-index: 999;
	}

	/* Show submenu on hover for mobile */
	#primary-menu li:hover > .sub-menu {
		display: block;
	}

	#primary-menu .sub-menu li a {
		padding: 12px 15px;
	}
}
.btn-touch:hover {
	background: #27ae60;
}

.btn-touch i {
	font-size: 12px;
}

.menu-toggle {
	display: none;
	font-size: 24px;
	cursor: pointer;
	color: #1E91D6;
	background: none;
	border: none;
}
.content-image-wrapper {
	display: flex;
	justify-content: center;
	/*     align-items: center; */
}
/* ===== HERO TEXT CONTENT (LEFT SIDE) ===== */
.hero-content {
	max-width: 1320px;
	margin: 0 auto;
	padding: 60px 40px 40px;
	position: relative;
	z-index: 5;
}

.hero-text {
	max-width: 600px;
}

.hero-text h1 {
	font-size: 56px;
	font-weight: 800;
	color: #0a0a0a;
	line-height: 1.15;
	margin-bottom: 30px;
}
.hero-text h1 span {
	color: #2ecc71;
}


.home-banner-outer .hero-buttons {
	display: flex;
	gap: 20px;
	margin-bottom:25%;
	flex-wrap: wrap;
}

.home-banner-outer .btn {
	padding: 14px 36px;
	border-radius: 8px;
	font-weight: 500;
	font-size: 16px;
	transition: 0.3s;
	display: inline-block;
	text-align: center;
	cursor: pointer;
}

.home-banner-outer .btn-primary {
	background: #2ecc71;
	color: white;
	border: 2px solid #2ecc71;
}

.home-banner-outer .btn-primary:hover {
	background: #27ae60;
	border-color: #27ae60;
}

.home-banner-outer .btn-outline {
	background: white;
	color: #1E91D6;
	border: 2px solid #1E91D6;
}

.home-banner-outer .btn-outline:hover {
	background: #1E91D6;
	color: white;
}
.home-banner-outer .image-area img {
	object-fit: scale-down;
}

/* ===== Services Box Design ===== */

.home-banner-outer .service-wrapper {
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.home-banner-outer .icon-text-wrapper {
	width: 150px;
	border-radius: 18px;
	padding: 25px 15px;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-shadow: 0 4px 20px rgba(0,0,0,0.06);
	transition: all .3s ease;
}

.home-banner-outer .icon-text-wrapper:hover{
	transform:translateY(-8px);
	box-shadow:0 10px 30px rgba(26,117,187,0.15);
}

.home-banner-outer .icon{
	width: 50px;
	height: 50px;
	display:flex;
	justify-content:center;
	align-items:center;
	border-radius:16px;
	background:#1a75bb;
	margin-bottom:18px;
}

.home-banner-outer .icon i{
	font-size:32px;
	color:#fff;
}

.home-banner-outer .text strong{
	font-size:12px;
	display:block;
}

.home-banner-outer .hero-text p {
	color: #444;
	font-size: 16px;
	line-height: 1.9;
	margin-bottom: 15px;
	max-width: 540px;
}

/* ===== APPOINTMENT TEXT ===== */


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

/* Large Desktop */
@media (max-width: 1400px) {
	.hero-text h1 {
		font-size: 50px;
	}
}

/* Desktop / Small Laptop */
@media (max-width: 1200px) {
	.hero-wrapper {
		min-height: 680px;
	}

	.hero-text h1 {
		font-size: 44px;
	}

	.hero-text {
		max-width: 500px;
	}
	.content-image-wrapper {
		display: flex;
		flex-wrap:wrap;
	}
}

/* Tablet Landscape */
@media (max-width: 992px) {
	.hero-wrapper {
		min-height: 600px;
	}

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

	.hero-text p {
		font-size: 15px;
	}

	.navbar ul {
		gap: 20px;
	}

	.navbar a {
		font-size: 14px;
	}

	.btn-touch {
		padding: 10px 20px;
		font-size: 14px;
	}

	.logo img {
		width: 90px;
	}
	.content-image-wrapper {
		display: flex;
		flex-wrap:wrap;
	}

}

/* Tablet Portrait */
@media (max-width: 768px) {
	.top-bar {
		font-size: 12px;
		padding: 10px 0;
	}

	.top-bar-container {
		padding: 0 15px;
		justify-content: center;
		text-align: center;
		gap: 15px;
	}

	.contact-info i {
		font-size: 14px;
	}

	.header {
		padding: 15px 0;
	}

	.header-container {
		padding: 0 20px;
		position: relative;
	}

	.navbar {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background:#00132d;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
		padding: 20px;
		z-index: 50;
	}

	.navbar.active {
		display: block;
	}

	.navbar ul {
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}

	.menu-toggle {
		display: block;
	}

	.btn-touch {
		display: none;
	}

	/* Background image on mobile - height auto, full width */
	.hero-wrapper {
		background-size: cover;
		background-position: center;
		min-height: auto;
		padding-bottom: 200px;
	}

	.hero-content {
		padding: 40px 20px 30px;
	}

	.hero-text {
		max-width: 100%;
		background: rgba(255, 255, 255, 0.85);
		padding: 25px;
		border-radius: 12px;
		backdrop-filter: blur(5px);
	}

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

	.hero-text p {
		font-size: 14px;
	}

	.hero-buttons {
		gap: 12px;
	}

	.btn {
		padding: 12px 24px;
		font-size: 14px;
	}
	.content-image-wrapper {
		display: flex;
		flex-wrap:wrap;
	}

}

/* Mobile Large */
@media (max-width: 600px) {
	.top-bar-container {
		flex-direction: column;
		gap: 5px;
	}

	.hero-text h1 {
		font-size: 26px;
	}


}

/* Mobile */
@media (max-width: 480px) {
	.top-bar {
		font-size: 11px;
	}

	.logo img {
		width: 75px;
	}

	.hero-content {
		padding: 30px 15px 20px;
	}

	.hero-text {
		padding: 20px;
	}

	.hero-text h1 {
		font-size: 22px;
		margin-bottom: 20px;
	}

	.hero-text p {
		font-size: 13px;
		line-height: 1.7;
		margin-bottom: 25px;
	}

	.hero-buttons {
		flex-direction: column;
		width: 100%;
	}

	.btn {
		width: 100%;
		padding: 12px 20px;
		font-size: 14px;
	}


}

/* Extra Small Mobile */
@media (max-width: 360px) {
	.hero-text h1 {
		font-size: 20px;
	}


}

/* ============================================
===== BALANCING SECTION =====
============================================ */
.balancing-section {
	padding: 80px 0 100px;
	background: #000;
}

.balancing-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
}

/* Section Header */
.section-header {
	text-align: center;
	margin-bottom: 70px;
}

.section-title {
	font-size: 42px;
	font-weight: 700;
	color: #FFF;
	margin-bottom: 25px;
	line-height: 1.2;
}

.section-desc {
	color: #FFF;
	font-size: 16px;
	line-height: 2;
	max-width: 850px;
	margin: 0 auto;
}

/* Cards Grid */
.cards-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 70px;
}

.cards-row-two {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	max-width: 800px;
	margin: 0 auto;
}

/* Card */
.card {
	position: relative;
	padding-bottom: 50px;
}

.card-image {
	width: 100%;
	height: 220px;
	overflow: hidden;
	border-radius: 8px;
}

.card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card-content {
	background: #fff;
	margin: -60px 20px 0;
	padding: 25px 25px 30px;
	position: relative;
	z-index: 2;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	border-radius: 4px;
	text-align: center;
}

.card-content h4 {
	font-size: 20px;
	font-weight: 700;
	cursor: pointer;
	color: #0a0a0a;
	margin-bottom: 15px;
	text-align: left;
}
.card-content h4:hover {
	background: linear-gradient(90deg, #1a75bb, #2ecc71);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
}

.card-content p {
	color: #666;
	font-size: 14px;
	line-height: 1.7;
	text-align: center;
}

/* Bottom blue line */
.card-line {
	position: absolute;
	bottom: 25px;
	left: 35px;
	right: 35px;
	height: 2px;
	background: #1E91D6;
	z-index: 1;
}

/* Arrow Circle */
.card-arrow {
	position: absolute;
	bottom: 5px;
	left: 50%;
	transform: translateX(-50%);
	width: 42px;
	height: 42px;
	background: #fff;
	border: 2px solid #1E91D6;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #1E91D6;
	cursor: pointer;
	z-index: 3;
	transition: 0.3s;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.card-arrow:hover {
	background: #1E91D6;
	color: white;
}

.card-arrow i {
	font-size: 14px;
}

/* ===== BALANCING RESPONSIVE ===== */
@media (max-width: 1024px) {
	.section-title {
		font-size: 36px;
	}

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

	.cards-row-two {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.balancing-section {
		padding: 60px 0 80px;
	}

	.section-header {
		margin-bottom: 50px;
	}

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

	.section-desc {
		font-size: 14px;
		line-height: 1.8;
	}

	.cards-row,
	.cards-row-two {
		grid-template-columns: 1fr;
		gap: 40px;
		max-width: 450px;
		margin-left: auto;
		margin-right: auto;
	}

	.cards-row {
		margin-bottom: 50px;
	}

	.card-image {
		height: 200px;
	}

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

@media (max-width: 480px) {
	.balancing-section {
		padding: 40px 0 60px;
	}

	.balancing-container {
		padding: 0 20px;
	}

	.section-title {
		font-size: 24px;
		margin-bottom: 20px;
	}

	.section-desc {
		font-size: 13px;
	}

	.card-image {
		height: 180px;
	}

	.card-content {
		margin: -50px 15px 0;
		padding: 20px 20px 25px;
	}

	.card-content h4 {
		font-size: 16px;
	}

	.card-content p {
		font-size: 13px;
	}

	.card-arrow {
		width: 38px;
		height: 38px;
	}
}
/* ===== USP SECTION ===== */
.usp-section {
	width: 100%;
	padding: 80px 0px;
}
.usp-section .usp-container{
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 40px;
}
.usp-section .usp-wrapper {
	display: flex;
	justify-content:space-between;
	align-items: center;
	gap: 20px;
	margin-bottom: 5%;
}

.usp-section .usp{
	display:flex;
	align-items:center;
	gap:16px;
	padding:20px 24px;
	border-radius:18px;
	box-shadow:0 5px 25px rgba(0,0,0,0.06);
	transition:all .3s ease;
	width:300px;
}

.usp-section .usp:hover{
	transform:translateY(-6px);
	box-shadow:0 12px 35px rgba(26,117,187,0.15);
}

.usp-section .usp .icon {
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 5px;
}

.usp-section .usp .icon i{
	color:#2ecc71;
	font-size:28px;
}

.usp-section .usp .text-area{
	display:flex;
	flex-direction:column;
}


.usp-section .usp .content{
	font-size:16px;
	color:#666;
	font-weight:500;
}

@media (max-width: 767px){
	.usp-section .usp-wrapper{
		display:flex;
		justify-content:center;
		flex-wrap:wrap;

	}
}

/* ============================================
===== STRATEGIC THINKERS SECTION =====
============================================ */
.strategic-section {
	background: #000;
	padding: 80px 0;
	color: white;
}

.strategic-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 40px;
}

/* Section Title */
.strategic-title {
	text-align: center;
	font-size: 38px;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
	margin-bottom: 70px;
}

/* Main Content Grid */
.strategic-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

/* Left Side - Cards Layout */
.strategy-cards-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	position: relative;
}

/* Individual Card */
.strategy-card {
	padding: 30px 25px;
	border-radius: 12px;
	position: relative;
	min-height: 200px;
}

.strategy-card.blue-card {
	background: #D6E9F8;
}

.strategy-card.yellow-card {
	background: #FEF7E5;
}

/* Offset positions for staggered look */
.strategy-card:nth-child(2) {
	margin-top: 60px;
}

.strategy-card:nth-child(3) {
	margin-top: 0px;
}

/* Card Icon */
.strategy-icon {
	position: absolute;
	top: 20px;
	right: 10px;
	width: 38px;
	height: 38px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 14px;
}

.strategy-icon.blue-icon {
	background: #1E91D6;
}

.strategy-icon.green-icon {
	background: #2ecc71;
}

/* Card Content */
.strategy-card h4 {
	font-size: 20px;
	font-weight: 700;
	color: #0a0a0a;
	margin-bottom: 15px;
}

.strategy-card p {
	font-size: 13px;
	color: #444;
	line-height: 1.7;
}

/* Right Side - Image */
.strategic-image {
	width: 100%;
	border-radius: 12px;
	overflow: hidden;
}

.strategic-image img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 12px;
}

/* ===== STRATEGIC RESPONSIVE ===== */
@media (max-width: 1100px) {
	.strategic-title {
		font-size: 32px;
	}

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

@media (max-width: 992px) {
	.strategic-section {
		padding: 60px 0;
	}

	.strategic-title {
		font-size: 28px;
		margin-bottom: 50px;
	}

	.strategic-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.strategy-cards-wrapper {
		max-width: 600px;
		margin: 0 auto;
	}

	.strategic-image {
		max-width: 600px;
		margin: 0 auto;
	}
}

@media (max-width: 768px) {
	.strategic-section {
		padding: 50px 0;
	}

	.strategic-container {
		padding: 0 20px;
	}

	.strategic-title {
		font-size: 24px;
		margin-bottom: 40px;
	}

	.strategy-cards-wrapper {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	/* Remove staggered offset on mobile */
	.strategy-card:nth-child(2),
	.strategy-card:nth-child(3) {
		margin-top: 0;
	}

	.strategy-card {
		min-height: auto;
		padding: 25px 20px;
	}

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

	.strategy-card p {
		font-size: 13px;
	}
}

@media (max-width: 480px) {
	.strategic-section {
		padding: 40px 0;
	}

	.strategic-title {
		font-size: 20px;
		margin-bottom: 30px;
	}

	.strategy-card {
		padding: 20px 18px;
	}

	.strategy-card h4 {
		font-size: 16px;
		margin-bottom: 12px;
	}

	.strategy-card p {
		font-size: 12px;
	}

	.strategy-icon {
		width: 32px;
		height: 32px;
		top: 15px;
		right: 15px;
		font-size: 12px;
	}
}

/* ============================================
===== LATEST BLOGS & NEWS SECTION =====
============================================ */
.blogs-section {
	padding: 70px 0 50px;
	background: #fff;
}

.blogs-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
}

.blogs-title {
	text-align: center;
	font-size: 28px;
	font-weight: 700;
	color: #0a0a0a;
	margin-bottom: 40px;
}

.blogs-wrapper {
	background: #f5f5f5;
	padding: 40px 30px;
	border-radius: 8px;
}

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

.blog-card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.blog-image {
	width: 100%;
	height: 160px;
	background: #d9d9d9;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999;
	font-size: 40px;
	overflow: hidden;
}

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

.blog-content {
	padding: 18px 20px 20px;
	position: relative;
}

.blog-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

.blog-content h4 {
	font-size: 17px;
	font-weight: 700;
	color: #0a0a0a;
	margin: 0;
}

.blog-arrow {
	width: 50px;
	height: 35px;
	border: 1.5px solid #1E91D6;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #1E91D6;
	font-size: 12px;
	cursor: pointer;
	transition: 0.3s;
}

.blog-arrow:hover {
	background: #1E91D6;
	color: white;
}

.blog-content p {
	font-size: 12px;
	color: #555;
	line-height: 1.6;
	margin-bottom: 15px;
}

.read-more-btn {
	background: #0a0a0a;
	color: white;
	border: none;
	padding: 8px 18px;
	border-radius: 4px;
	font-size: 12px;
	cursor: pointer;
	font-family: 'Poppins', sans-serif;
	transition: 0.3s;
}

.read-more-btn:hover {
	background: #1E91D6;
}

/* ============================================
===== INSTAGRAM POSTS SECTION =====
============================================ */
.instagram-section {
	padding: 50px 0 30px;
	background: #fff;
}

.instagram-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
}

.instagram-wrapper {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	background: #1E91D6;
	border-radius: 8px;
	overflow: hidden;
	min-height: 380px;
}

/* Left - Image Grid */
.instagram-images {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
}

.insta-img {
	width: 100%;
	height: 190px;
	overflow: hidden;
}

.insta-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Right - Content */
.instagram-content {
	padding: 40px 35px;
	color: white;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.instagram-content h2 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
}

.instagram-content p {
	font-size: 14px;
	line-height: 1.8;
	margin-bottom: 25px;
}

.contact-ads-btn {
	background: white;
	color: #1E91D6;
	border: none;
	padding: 10px 24px;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	font-family: 'Poppins', sans-serif;
	align-self: flex-start;
	transition: 0.3s;
}

.contact-ads-btn:hover {
	background: #f0f0f0;
}

/* Instagram Bottom Buttons */
.instagram-bottom-btns {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 30px;
	flex-wrap: wrap;
}

.insta-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 22px;
	border-radius: 30px;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	border: none;
	font-family: 'Poppins', sans-serif;
	color: #6c5ce7;
	transition: 0.3s;
}

.insta-btn-purple {
	background: #e8e0fc;
}

.insta-btn-blue {
	background: #d6e4ff;
	color: #1E91D6;
}

.insta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ============================================
===== FAQ SECTION =====
============================================ */
.faq-section {
	padding: 70px 0;
	background: #fff;
}

.faq-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
}

.faq-title {
	text-align: center;
	font-size: 28px;
	font-weight: 700;
	color: #0a0a0a;
	margin-bottom: 50px;
}

.faq-content {
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: 40px;
	align-items: start;
}

/* Left Image */
.faq-image {
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
	background: #d9d9d9;
	height: 100%;
}

.faq-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Right - Accordion */
.faq-accordion {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.faq-item {
	background: #f5f5f5;
	border-radius: 6px;
	overflow: hidden;
	transition: 0.3s;
}

.faq-item.active {
	background: #f5f5f5;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	color: #0a0a0a;
}

.faq-question i {
	font-size: 12px;
	transition: 0.3s;
	color: #555;
}

.faq-item.active .faq-question i {
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	padding: 0 20px;
}

.faq-item.active .faq-answer {
	max-height: 200px;
	padding: 0 20px 18px;
}

.faq-answer p {
	font-size: 13px;
	color: #555;
	line-height: 1.6;
}

/* ============================================
===== RESPONSIVE FOR ALL 3 SECTIONS =====
============================================ */

@media (max-width: 992px) {
	/* Blogs */
	.blogs-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	/* Instagram */
	.instagram-wrapper {
		grid-template-columns: 1fr;
	}

	.insta-img {
		height: 170px;
	}

	.instagram-content h2 {
		font-size: 26px;
	}

	/* FAQ */
	.faq-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.faq-image {
		min-height: 350px;
		max-width: 500px;
		margin: 0 auto;
	}
}

@media (max-width: 768px) {
	/* Blogs */
	.blogs-section {
		padding: 50px 0 30px;
	}

	.blogs-title,
	.faq-title {
		font-size: 24px;
		margin-bottom: 30px;
	}

	.blogs-wrapper {
		padding: 25px 20px;
	}

	.blogs-grid {
		grid-template-columns: 1fr;
		max-width: 400px;
		margin: 0 auto;
	}

	/* Instagram */
	.instagram-section {
		padding: 30px 0 20px;
	}

	.instagram-content {
		padding: 30px 25px;
	}

	.instagram-content h2 {
		font-size: 22px;
	}

	.instagram-content p {
		font-size: 13px;
	}

	.insta-img {
		height: 140px;
	}

	/* FAQ */
	.faq-section {
		padding: 50px 0;
	}

	.faq-image {
		min-height: 280px;
	}

	.faq-question {
		font-size: 13px;
		padding: 13px 16px;
	}
}

@media (max-width: 480px) {
	.blogs-container,
	.instagram-container,
	.faq-container {
		padding: 0 20px;
	}

	.blogs-title,
	.faq-title {
		font-size: 20px;
	}

	.blog-content h4 {
		font-size: 16px;
	}

	.instagram-content h2 {
		font-size: 20px;
	}

	.insta-img {
		height: 120px;
	}

	.instagram-bottom-btns {
		gap: 10px;
	}

	.insta-btn {
		padding: 8px 16px;
		font-size: 12px;
	}

	.faq-image {
		min-height: 250px;
	}
}
/* ============================================
===== GET A FREE QUOTE SECTION =====
============================================ */
.quote-section {
	background: #000;
	padding: 70px 0;
	color: white;
}

.quote-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
}

.quote-content {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 50px;
	align-items: center;
}

/* ===== LEFT SIDE - FORM ===== */
.quote-form-wrapper {
	background: #1a1a1a;
	border: 1px solid #2a2a2a;
	border-radius: 8px;
	padding: 35px 30px;
}

.quote-form-title {
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 8px;
}

.quote-form-subtitle {
	font-size: 13px;
	color: #999;
	margin-bottom: 25px;
}

.quote-form {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group label {
	font-size: 13px;
	color: #ccc;
	margin-bottom: 8px;
	font-weight: 400;
}

.form-group input,
.form-group textarea {
	background: transparent;
	border: 1px solid #2a2a2a;
	border-radius: 5px;
	padding: 12px 14px;
	color: #fff;
	font-size: 13px;
	font-family: 'Poppins', sans-serif;
	outline: none;
	transition: 0.3s;
	width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
	border-color: #1E91D6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: #555;
}

.form-group textarea {
	resize: vertical;
	min-height: 80px;
}

.submit-btn {
	background: #2ecc71;
	color: white;
	border: none;
	padding: 11px 25px;
	border-radius: 5px;
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	font-family: 'Poppins', sans-serif;
	transition: 0.3s;
	align-self: flex-start;
	margin-top: 5px;
}

.submit-btn:hover {
	background: #27ae60;
}

/* ===== RIGHT SIDE - LET'S START INFO ===== */
.quote-info {
	padding-left: 20px;
}

.you-are-here {
	color: #2ecc71;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 10px;
}

.lets-start {
	font-size: 42px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 18px;
	line-height: 1.1;
}

.quote-info-desc {
	color: #ccc;
	font-size: 14px;
	line-height: 1.7;
	margin-bottom: 35px;
	max-width: 400px;
}

/* Contact Items */
.contact-list {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

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

.contact-icon {
	width: 45px;
	height: 45px;
	background: #1E91D6;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 18px;
	flex-shrink: 0;
}

.contact-text {
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
}

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

@media (max-width: 992px) {
	.quote-content {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.quote-info {
		padding-left: 0;
		text-align: center;
	}

	.lets-start {
		font-size: 36px;
	}

	.quote-info-desc {
		margin-left: auto;
		margin-right: auto;
	}

	.contact-list {
		align-items: center;
	}

	.contact-item {
		justify-content: flex-start;
		max-width: 400px;
		width: 100%;
	}
}

@media (max-width: 768px) {
	.quote-section {
		padding: 50px 0;
	}

	.quote-form-wrapper {
		padding: 28px 22px;
	}

	.quote-form-title {
		font-size: 20px;
	}

	.lets-start {
		font-size: 30px;
	}

	.form-row {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.contact-text {
		font-size: 14px;
	}

	.contact-icon {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.quote-section {
		padding: 40px 0;
	}

	.quote-container {
		padding: 0 20px;
	}

	.quote-form-wrapper {
		padding: 22px 18px;
	}

	.quote-form-title {
		font-size: 18px;
	}

	.quote-form-subtitle {
		font-size: 12px;
	}

	.lets-start {
		font-size: 26px;
	}

	.quote-info-desc {
		font-size: 13px;
	}

	.form-group input,
	.form-group textarea {
		padding: 10px 12px;
		font-size: 12px;
	}

	.contact-item {
		gap: 12px;
	}
}
/* ============================================
===== FOOTER SECTION =====
============================================ */
.footer-section {
	background: #000;
	padding: 50px 0 0;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
}

/* Footer Grid */
.footer-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1.2fr;
	gap: 40px;
	padding-bottom: 40px;
}

/* Column Heading */
.footer-col h4 {
	font-size: 17px;
	font-weight: 700;
	color: #FFF;
	margin-bottom: 25px;
}

/* Logo Column */
.footer-logo {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.footer-logo img {
	width: 200px;
	height: auto;
}

/* Links List */
.footer-links {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.footer-links a {
	color: #fff;
	font-size: 14px;
	text-decoration: none;
	transition: 0.3s;
}

.footer-links a:hover {
	color: #1E91D6;
}

/* Contact List */
.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.footer-contact-item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #555;
	font-size: 14px;
}

.footer-contact-item i {
	color: #999;
	font-size: 14px;
}

.footer-contact-item a {
	color:#fff;
	text-decoration: none;
	transition: 0.3s;
}

.footer-contact-item a:hover {
	color: #1E91D6;
}

/* Social Icons */
.footer-socials {
	display: flex;
	gap: 14px;
	margin-top: 8px;
}

.footer-socials a {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	transition: 0.3s;
	text-decoration: none;
}

.social-instagram { color: #E4405F; }
.social-facebook  { color: #1877F2; }
.social-twitter   { color: #1DA1F2; }
.social-linkedin  { color: #0A66C2; }

.footer-socials a:hover {
	transform: translateY(-3px);
}

/* Footer Bottom - Copyright */
.footer-bottom {
	border-top: 1px solid #e5e5e5;
	padding: 20px 0;
	text-align: center;
}

.footer-bottom p {
	font-size: 13px;
	color: #555;
}

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

@media (max-width: 992px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 35px;
	}

	.footer-logo {
		justify-content: flex-start;
	}
}

@media (max-width: 600px) {
	.footer-section {
		padding: 40px 0 0;
	}

	.footer-container {
		padding: 0 20px;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 30px;
		text-align: left;
		padding-bottom: 30px;
	}

	.footer-col h4 {
		font-size: 16px;
		margin-bottom: 18px;
	}

	.footer-logo img {
		width: 100px;
		margin-top: 0;
	}

	.footer-links a,
	.footer-contact-item {
		font-size: 13px;
	}

	.footer-bottom p {
		font-size: 12px;
	}
}

@media (max-width: 380px) {
	.footer-socials {
		flex-wrap: wrap;
	}
}



/* ============================================
===== ABOUT PAGE STYLES =====
============================================ */

/* ===== ABOUT HERO ===== */
.about-hero {
	background: #1E91D6;
	padding: 80px 0;
	text-align: center;
	color: white;
	position: relative;
	overflow: hidden;
}

.about-hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
}

.about-hero::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
}

.about-hero-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
	position: relative;
	z-index: 2;
}

.about-breadcrumb {
	font-size: 14px;
	margin-bottom: 15px;
	color: rgba(255, 255, 255, 0.7);
}

.about-breadcrumb span {
	color: #fff;
	font-weight: 600;
}

.about-hero-content h1 {
	font-size: 48px;
	font-weight: 800;
	margin-bottom: 18px;
	line-height: 1.2;
}

.about-hero-desc {
	font-size: 16px;
	max-width: 650px;
	margin: 0 auto;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.9);
}


/* ===== WHO WE ARE ===== */
.who-we-are {
	padding: 90px 0;
	background: #fff;
}

.who-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
}

.who-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

/* Left - Images */
.who-images {
	position: relative;
	min-height: 500px;
}

.who-img-large {
	width: 75%;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.who-img-large img {
	width: 100%;
	height: 350px;
	object-fit: cover;
	display: block;
}

.who-img-small {
	position: absolute;
	bottom: 30px;
	right: 0;
	width: 55%;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
	border: 5px solid white;
}

.who-img-small img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
}

.who-experience-badge {
	position: absolute;
	top: 40%;
	left: 55%;
	background: #1E91D6;
	color: white;
	padding: 22px;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 10px 25px rgba(30, 145, 214, 0.3);
	z-index: 3;
}

.exp-number {
	display: block;
	font-size: 36px;
	font-weight: 800;
	line-height: 1;
}

.exp-text {
	font-size: 12px;
	display: block;
	margin-top: 5px;
}

/* Right - Content */
.who-tagline {
	color: #1E91D6;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.who-right h2 {
	font-size: 36px;
	font-weight: 700;
	color: #0a0a0a;
	margin-bottom: 20px;
	line-height: 1.2;
}

.who-desc {
	color: #555;
	font-size: 14px;
	line-height: 1.8;
	margin-bottom: 15px;
}

/* Feature Items */
.who-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin: 25px 0 30px;
}

.who-feature-item {
	display: flex;
	align-items: center;
	gap: 10px;
}

.feature-icon {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.blue-icon-bg {
	background: #1E91D6;
	color: white;
}

.green-icon-bg {
	background: #2ecc71;
	color: white;
}

.feature-icon i {
	font-size: 12px;
}

.who-feature-item span {
	font-size: 14px;
	color: #333;
	font-weight: 500;
}

.about-btn {
	padding: 14px 36px;
	border-radius: 8px;
	font-weight: 500;
	font-size: 15px;
	display: inline-block;
}


/* ===== MISSION & VISION ===== */
.mission-vision {
	padding: 80px 0;
	background: #f8f9fa;
}

.mv-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
}

.mv-header {
	text-align: center;
	margin-bottom: 60px;
}

.mv-header h2 {
	font-size: 36px;
	font-weight: 700;
	color: #0a0a0a;
	margin-bottom: 18px;
}

.mv-header p {
	color: #555;
	font-size: 15px;
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.7;
}

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

.mv-card {
	background: white;
	padding: 40px 30px;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
	transition: 0.3s;
	border-top: 4px solid transparent;
}

.mv-card:hover {
	transform: translateY(-5px);
	border-top-color: #1E91D6;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mv-card-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	margin: 0 auto 22px;
}

.mv-card h3 {
	font-size: 22px;
	font-weight: 700;
	color: #0a0a0a;
	margin-bottom: 14px;
}

.mv-card p {
	font-size: 14px;
	color: #555;
	line-height: 1.7;
}


/* ===== WHY CHOOSE US ===== */
.why-choose-us {
	padding: 90px 0;
	background: #fff;
}

.why-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
}

.why-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.why-tagline {
	color: #2ecc71;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.why-left h2 {
	font-size: 36px;
	font-weight: 700;
	color: #0a0a0a;
	margin-bottom: 18px;
	line-height: 1.2;
}

.why-desc {
	color: #555;
	font-size: 14px;
	line-height: 1.8;
	margin-bottom: 30px;
}

.why-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
}

.stat-item {
	background: #f8f9fa;
	padding: 22px 18px;
	border-radius: 10px;
	text-align: center;
	border-left: 4px solid #1E91D6;
	transition: 0.3s;
}

.stat-item:hover {
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.stat-item h3 {
	font-size: 32px;
	font-weight: 800;
	color: #1E91D6;
	margin-bottom: 5px;
}

.stat-item p {
	font-size: 13px;
	color: #555;
	font-weight: 500;
}

.why-right {
	border-radius: 12px;
	overflow: hidden;
}

.why-right img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 12px;
}


/* ===== OUR TEAM ===== */
.our-team {
	padding: 80px 0;
	background: #f8f9fa;
}

.team-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
}

.team-header {
	text-align: center;
	margin-bottom: 60px;
}

.team-tagline {
	color: #1E91D6;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 10px;
}

.team-header h2 {
	font-size: 36px;
	font-weight: 700;
	background: linear-gradient(90deg, #1a75bb, #2ecc71);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 16px;
}

.team-desc {
	color: #000;
	font-size: 15px;
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.7;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}

.team-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
	transition: 0.3s;
}

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

.team-img {
	position: relative;
	height: 280px;
	overflow: hidden;
}

.team-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: 0.3s;
}

.team-card:hover .team-img img {
	transform: scale(1.05);
}

/* Social overlay on hover */
.team-socials {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(30, 145, 214, 0.9);
	display: flex;
	justify-content: center;
	gap: 16px;
	padding: 12px;
	transform: translateY(100%);
	transition: 0.3s;
}

.team-card:hover .team-socials {
	transform: translateY(0);
}

.team-socials a {
	color: white;
	font-size: 16px;
	transition: 0.3s;
}

.team-socials a:hover {
	transform: scale(1.2);
}

.team-info {
	padding: 20px;
	text-align: center;
}

.team-info h4 {
	font-size: 18px;
	font-weight: 700;
	color: #0a0a0a;
	margin-bottom: 5px;
}

.team-info p {
	font-size: 13px;
	color: #1E91D6;
	font-weight: 500;
}


/* ===== WORK PROCESS ===== */
.work-process {
	padding: 80px 0;
	background: #000;
}

.work-process .process-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
}

.work-process .process-header {
	text-align: center;
	margin-bottom: 60px;
}

.work-process .process-tagline {
	color: #1E91D6;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 10px;
}

.work-process .process-header h2 {
	font-size: 36px;
	font-weight: 700;
	color: #fff;
}

.work-process .process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	position: relative;
}

/* Connecting line between cards */
.work-process .process-grid::before {
	content: '';
	position: absolute;
	top: 70px;
	left: 15%;
	right: 15%;
	height: 2px;
	background: #e0e0e0;
	z-index: 0;
}

.work-process .process-card {
	background: #f8f9fa;
	padding: 35px 25px;
	border-radius: 12px;
	text-align: center;
	position: relative;
	z-index: 1;
	transition: 0.3s;
}

.work-process .process-card:hover {
	background: #1E91D6;
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(30, 145, 214, 0.3);
}

.work-process .process-card:hover h4,
.work-process .process-card:hover p {
	color: white;
}

.work-process .process-card:hover .process-number {
	color: rgba(255, 255, 255, 0.3);
}

.work-process .process-number {
	font-size: 48px;
	font-weight: 800;
	color: #e8e8e8;
	position: absolute;
	top: 10px;
	right: 18px;
	line-height: 1;
	transition: 0.3s;
}

.work-process .process-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	margin: 0 auto 20px;
}

.work-process .process-card h4 {
	font-size: 18px;
	font-weight: 700;
	color: #0a0a0a;
	margin-bottom: 12px;
	transition: 0.3s;
}

.work-process .process-card p {
	font-size: 13px;
	color: #555;
	line-height: 1.6;
	transition: 0.3s;
}


/* ===== ABOUT CTA ===== */
.about-cta {
	background: #1E91D6;
	padding: 80px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.about-cta::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
}

.cta-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
	position: relative;
	z-index: 2;
}

.cta-content h2 {
	font-size: 38px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 18px;
	line-height: 1.2;
}

.cta-content p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 16px;
	max-width: 650px;
	margin: 0 auto 35px;
	line-height: 1.7;
}

.cta-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.btn-outline-white {
	background: transparent;
	color: white;
	border: 2px solid white;
	padding: 14px 30px;
	border-radius: 8px;
	font-weight: 500;
	font-size: 15px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: 0.3s;
}

.btn-outline-white:hover {
	background: white;
	color: #1E91D6;
}

.btn-outline-black {
	background: #000;
	color:#fff;
	border: 2px solid white;
	padding: 14px 30px;
	border-radius: 8px;
	font-weight: 500;
	font-size: 15px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: 0.3s;
}

.btn-outline-black:hover {
	background:#000;
	color: #1E91D6;
}

/* ============================================
===== ABOUT PAGE RESPONSIVE =====
============================================ */

@media (max-width: 1024px) {
	.about-hero-content h1 {
		font-size: 40px;
	}

	.who-right h2,
	.why-left h2,
	.mv-header h2,
	.team-header h2,
	.process-header h2,
	.cta-content h2 {
		font-size: 30px;
	}

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

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

	.process-grid::before {
		display: none;
	}
}

@media (max-width: 768px) {
	.about-hero {
		padding: 60px 0;
	}

	.about-hero-content h1 {
		font-size: 32px;
	}

	.about-hero-desc {
		font-size: 14px;
	}

	.who-we-are,
	.why-choose-us {
		padding: 60px 0;
	}

	.who-content,
	.why-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.who-images {
		min-height: 400px;
	}

	.who-right h2,
	.why-left h2 {
		font-size: 28px;
	}

	.who-features {
		grid-template-columns: 1fr;
	}

	.mission-vision,
	.our-team,
	.work-process {
		padding: 60px 0;
	}

	.mv-grid {
		grid-template-columns: 1fr;
		max-width: 500px;
		margin: 0 auto;
	}

	.why-stats {
		grid-template-columns: 1fr 1fr;
	}

	.about-cta {
		padding: 60px 0;
	}

	.cta-content h2 {
		font-size: 28px;
	}
}

@media (max-width: 600px) {
	.team-grid {
		grid-template-columns: 1fr;
		max-width: 350px;
		margin: 0 auto;
	}

	.process-grid {
		grid-template-columns: 1fr;
		max-width: 350px;
		margin: 0 auto;
	}
}

@media (max-width: 480px) {
	.about-hero-content h1 {
		font-size: 26px;
	}

	.who-right h2,
	.why-left h2,
	.mv-header h2,
	.team-header h2,
	.process-header h2,
	.cta-content h2 {
		font-size: 24px;
	}

	.who-images {
		min-height: 350px;
	}

	.who-img-large img {
		height: 280px;
	}

	.who-img-small img {
		height: 180px;
	}

	.why-stats {
		grid-template-columns: 1fr;
	}

	.stat-item h3 {
		font-size: 28px;
	}

	.cta-content h2 {
		font-size: 24px;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.btn-outline-white {
		width: 100%;
		justify-content: center;
	}

	.about-btn {
		width: 100%;
		text-align: center;
	}
}

/* ============================================
===== SERVICES PAGE STYLES =====
============================================ */

/* ===== SERVICES HERO ===== */
.services-hero {
	background: linear-gradient(135deg, #1E91D6 0%, #1573ab 100%);
	padding: 80px 0;
	text-align: center;
	color: white;
	position: relative;
	overflow: hidden;
}

.services-hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
}

.services-hero::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
}

.services-hero-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
	position: relative;
	z-index: 2;
}

.services-breadcrumb {
	font-size: 14px;
	margin-bottom: 15px;
	color: rgba(255, 255, 255, 0.7);
}

.services-breadcrumb span {
	color: #fff;
	font-weight: 600;
}

.services-hero-content h1 {
	font-size: 48px;
	font-weight: 800;
	margin-bottom: 18px;
	line-height: 1.2;
}

.services-hero-desc {
	font-size: 16px;
	max-width: 650px;
	margin: 0 auto 2% auto;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.9);
}


/* ===== WHAT WE OFFER ===== */
.what-we-offer {
	padding: 90px 0;
	background: #fff;
}

.offer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
}

.offer-header {
	text-align: center;
	margin-bottom: 60px;
}

.offer-tagline {
	color: #1E91D6;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 12px;
}

.offer-header h2 {
	font-size: 36px;
	font-weight: 700;
	color: #0a0a0a;
	margin-bottom: 18px;
}

.offer-desc {
	color: #555;
	font-size: 15px;
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.7;
}

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

/* Service Card */
.service-card {
	background: #fff;
	padding: 35px 28px;
	border-radius: 12px;
	border: 1px solid #eee;
	transition: 0.3s;
	position: relative;
	overflow: hidden;
}

.service-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: #1E91D6;
	transform: scaleX(0);
	transition: 0.3s;
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
	border-color: transparent;
}

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

.service-card-icon {
	width: 65px;
	height: 65px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	margin-bottom: 22px;
}

.service-card h3 {
	font-size: 20px;
	font-weight: 700;
	color: #0a0a0a;
	margin-bottom: 14px;
}

.service-card p {
	font-size: 14px;
	color: #555;
	line-height: 1.7;
	margin-bottom: 18px;
}

.service-link {
	color: #1E91D6;
	font-size: 14px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: 0.3s;
}

.service-link:hover {
	gap: 12px;
	color: #1573ab;
}

.service-link i {
	font-size: 12px;
}


/* ===== SERVICE DETAIL SECTION ===== */
.service-detail {
	padding: 80px 0;
	background: #f8f9fa;
}

.detail-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
}

.detail-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	margin-bottom: 80px;
}

.detail-row:last-child {
	margin-bottom: 0;
}

.detail-row-reverse {
	direction: rtl;
}

.detail-row-reverse > * {
	direction: ltr;
}

.detail-image {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.detail-image img {
	width: 100%;
	height: 380px;
	object-fit: cover;
	display: block;
}

.detail-tagline {
	color: #1E91D6;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 14px;
}

.detail-content h2 {
	font-size: 32px;
	font-weight: 700;
	color: #0a0a0a;
	margin-bottom: 18px;
	line-height: 1.2;
}

.detail-desc {
	color: #555;
	font-size: 14px;
	line-height: 1.8;
	margin-bottom: 22px;
}

.detail-list {
	list-style: none;
	padding: 0;
	margin-bottom: 25px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.detail-list li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: #333;
	font-weight: 500;
}

.detail-list li i {
	color: #2ecc71;
	font-size: 14px;
}


/* ===== TECHNOLOGIES ===== */
.technologies {
	padding: 80px 0;
	background: #000;
	color: white;
}

.tech-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
}

.tech-header {
	text-align: center;
	margin-bottom: 60px;
}

.tech-tagline {
	color: #2ecc71;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 12px;
}

.tech-header h2 {
	font-size: 36px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 18px;
}

.tech-desc {
	color: #aaa;
	font-size: 15px;
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.7;
}

.tech-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 25px;
}

.tech-item {
	background: #1a1a1a;
	border: 1px solid #2a2a2a;
	border-radius: 12px;
	padding: 30px 15px;
	text-align: center;
	transition: 0.3s;
}

.tech-item:hover {
	border-color: #1E91D6;
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(30, 145, 214, 0.15);
}

.tech-item i {
	font-size: 40px;
	color: #1E91D6;
	margin-bottom: 12px;
	display: block;
	transition: 0.3s;
}

.tech-item:hover i {
	color: #2ecc71;
}

.tech-item span {
	font-size: 13px;
	font-weight: 500;
	color: #ccc;
}


/* ===== PRICING ===== */
.pricing-section {
	padding: 90px 0;
	background: #f8f9fa;
}

.pricing-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
}

.pricing-header {
	text-align: center;
	margin-bottom: 60px;
}

.pricing-tagline {
	color: #1E91D6;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 12px;
}

.pricing-header h2 {
	font-size: 36px;
	font-weight: 700;
	color: #0a0a0a;
	margin-bottom: 18px;
}

.pricing-desc {
	color: #555;
	font-size: 15px;
	max-width: 600px;
	margin: 0 auto;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	align-items: center;
}

.pricing-card {
	background: #fff;
	border-radius: 16px;
	padding: 40px 30px;
	text-align: center;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
	border: 2px solid transparent;
	transition: 0.3s;
	position: relative;
}

.pricing-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Popular Card */
.pricing-popular {
	border-color: #1E91D6;
	transform: scale(1.05);
	box-shadow: 0 10px 35px rgba(30, 145, 214, 0.15);
}

.pricing-popular:hover {
	transform: scale(1.05) translateY(-5px);
}

.popular-badge {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: #1E91D6;
	color: white;
	padding: 5px 22px;
	border-radius: 30px;
	font-size: 12px;
	font-weight: 600;
	white-space: nowrap;
}

.pricing-plan-name {
	font-size: 20px;
	font-weight: 700;
	color: #0a0a0a;
	margin-bottom: 20px;
}

.pricing-price {
	margin-bottom: 10px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.currency {
	font-size: 22px;
	font-weight: 700;
	color: #1E91D6;
	margin-top: 8px;
}

.amount {
	font-size: 52px;
	font-weight: 800;
	color: #0a0a0a;
	line-height: 1;
}

.period {
	font-size: 14px;
	color: #999;
	align-self: flex-end;
	margin-bottom: 8px;
	margin-left: 3px;
}

.pricing-plan-desc {
	font-size: 13px;
	color: #888;
	margin-bottom: 28px;
}

.pricing-features {
	list-style: none;
	padding: 0;
	margin-bottom: 30px;
	text-align: left;
}

.pricing-features li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 0;
	border-bottom: 1px solid #f5f5f5;
	font-size: 14px;
	color: #333;
}

.pricing-features li:last-child {
	border-bottom: none;
}

.pricing-features li i.fa-check {
	color: #2ecc71;
	font-size: 13px;
}

.pricing-features li.disabled {
	color: #bbb;
}

.pricing-features li.disabled i {
	color: #ddd;
}

.pricing-btn {
	display: block;
	padding: 13px 30px;
	border: 2px solid #1E91D6;
	border-radius: 8px;
	color: #1E91D6;
	font-weight: 600;
	font-size: 15px;
	transition: 0.3s;
	background: transparent;
}

.pricing-btn:hover {
	background: #1E91D6;
	color: white;
}

.pricing-btn-active {
	background: #1E91D6;
	color: white;
}

.pricing-btn-active:hover {
	background: #1573ab;
	border-color: #1573ab;
}


/* ===== SERVICES CTA ===== */
.services-cta {
	background: #1E91D6;
	padding: 60px 0;
}

.services-cta-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
}

.services-cta-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
	flex-wrap: wrap;
}

.services-cta-left h2 {
	font-size: 32px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 10px;
}

.services-cta-left p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 15px;
	max-width: 500px;
}

.services-cta-right {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}


/* ============================================
===== SERVICES PAGE RESPONSIVE =====
============================================ */

@media (max-width: 1024px) {
	.services-hero-content h1 {
		font-size: 40px;
	}

	.offer-header h2,
	.detail-content h2,
	.tech-header h2,
	.pricing-header h2 {
		font-size: 30px;
	}

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

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

@media (max-width: 768px) {
	.services-hero {
		padding: 60px 0;
	}

	.services-hero-content h1 {
		font-size: 32px;
	}

	.what-we-offer,
	.service-detail,
	.pricing-section {
		padding: 60px 0;
	}

	.offer-grid {
		grid-template-columns: 1fr;
		max-width: 450px;
		margin: 0 auto;
	}

	.detail-row,
	.detail-row-reverse {
		grid-template-columns: 1fr;
		gap: 35px;
		direction: ltr;
	}

	.detail-row-reverse > * {
		direction: ltr;
	}

	.detail-image img {
		height: 280px;
	}

	.detail-list {
		grid-template-columns: 1fr;
	}

	.detail-content h2 {
		font-size: 26px;
	}

	.tech-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 18px;
	}

	.tech-item {
		padding: 22px 12px;
	}

	.tech-item i {
		font-size: 32px;
	}

	.pricing-grid {
		grid-template-columns: 1fr;
		max-width: 420px;
		margin: 0 auto;
	}

	.pricing-popular {
		transform: scale(1);
	}

	.pricing-popular:hover {
		transform: translateY(-5px);
	}

	.services-cta-content {
		flex-direction: column;
		text-align: center;
	}

	.services-cta-left h2 {
		font-size: 26px;
	}

	.services-cta-right {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.services-hero-content h1 {
		font-size: 26px;
	}

	.services-hero-desc {
		font-size: 14px;
	}

	.offer-header h2,
	.detail-content h2,
	.tech-header h2,
	.pricing-header h2 {
		font-size: 24px;
	}

	.service-card {
		padding: 28px 22px;
	}

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

	.tech-item i {
		font-size: 28px;
	}

	.tech-item span {
		font-size: 12px;
	}

	.detail-image img {
		height: 230px;
	}

	.amount {
		font-size: 42px;
	}

	.services-cta-left h2 {
		font-size: 22px;
	}

	.services-cta-right {
		flex-direction: column;
		width: 100%;
	}

	.services-cta-right .btn {
		width: 100%;
		text-align: center;
		justify-content: center;
	}
}

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

/* ===== CONTACT HERO ===== */
.contact-hero {
	background: linear-gradient(135deg, #1E91D6 0%, #1573ab 100%);
	padding: 80px 0;
	text-align: center;
	color: white;
	position: relative;
	overflow: hidden;
}

.contact-hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
}

.contact-hero::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
}

.contact-hero-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
	position: relative;
	z-index: 2;
}

.contact-breadcrumb {
	font-size: 14px;
	margin-bottom: 15px;
	color: rgba(255, 255, 255, 0.7);
}

.contact-breadcrumb span {
	color: #fff;
	font-weight: 600;
}

.contact-hero-content h1 {
	font-size: 48px;
	font-weight: 800;
	margin-bottom: 18px;
	line-height: 1.2;
}

.contact-hero-desc {
	font-size: 16px;
	max-width: 650px;
	margin: 0 auto;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.9);
}


/* ===== CONTACT INFO CARDS ===== */
.contact-info-section {
	padding: 80px 0;
	background: #fff;
	margin-top: -50px;
	position: relative;
	z-index: 5;
}

.contact-info-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
}

.contact-info-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}

.contact-info-card {
	background: #fff;
	padding: 35px 25px;
	border-radius: 14px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	transition: 0.3s;
	border-top: 4px solid transparent;
}

.contact-info-card:hover {
	transform: translateY(-8px);
	border-top-color: #1E91D6;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.info-card-icon {
	width: 65px;
	height: 65px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	margin: 0 auto 20px;
}

.contact-info-card h4 {
	font-size: 18px;
	font-weight: 700;
	color: #0a0a0a;
	margin-bottom: 8px;
}

.contact-info-card p {
	font-size: 13px;
	color: #888;
	margin-bottom: 14px;
}

.contact-info-card a {
	font-size: 14px;
	color: #1E91D6;
	font-weight: 600;
	text-decoration: none;
	transition: 0.3s;
	display: block;
	word-break: break-word;
}

.contact-info-card a:hover {
	color: #1573ab;
}


/* ===== CONTACT FORM SECTION ===== */
.contact-form-section {
	padding: 90px 0;
	background: #f8f9fa;
}

.contact-form-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
}

.contact-form-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 0;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* LEFT - Contact Form */
.contact-form-wrapper {
	padding: 50px 45px;
}

.form-tagline {
	color: #1E91D6;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 10px;
}

.contact-form-wrapper h2 {
	font-size: 32px;
	font-weight: 700;
	color: #0a0a0a;
	margin-bottom: 12px;
	line-height: 1.2;
}

.form-desc {
	color: #666;
	font-size: 14px;
	line-height: 1.7;
	margin-bottom: 30px;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-form .form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.contact-form .form-group {
	display: flex;
	flex-direction: column;
}

.contact-form .form-group label {
	font-size: 13px;
	color: #333;
	margin-bottom: 8px;
	font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	background: #f8f9fa;
	border: 1px solid #e5e5e5;
	border-radius: 6px;
	padding: 13px 16px;
	color: #333;
	font-size: 14px;
	font-family: 'Poppins', sans-serif;
	outline: none;
	transition: 0.3s;
	width: 100%;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	border-color: #1E91D6;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(30, 145, 214, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: #aaa;
}

.contact-form textarea {
	resize: vertical;
	min-height: 130px;
}

.contact-form select {
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 16px;
	padding-right: 40px;
}

.form-submit-btn {
	background: #2ecc71;
	color: white;
	border: none;
	padding: 14px 32px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	font-family: 'Poppins', sans-serif;
	transition: 0.3s;
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 8px;
}

.form-submit-btn:hover {
	background: #27ae60;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

/* RIGHT - Info Panel */
.contact-info-panel {
	background: #1E91D6;
	color: white;
	padding: 50px 40px;
	position: relative;
	overflow: hidden;
}

.contact-info-panel::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -30%;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
}

.contact-info-panel::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -20%;
	width: 250px;
	height: 250px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
}

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

.info-panel-content h3 {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 12px;
}

.info-panel-desc {
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 35px;
}

.info-panel-list {
	display: flex;
	flex-direction: column;
	gap: 25px;
	margin-bottom: 40px;
}

.info-panel-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

.info-panel-icon {
	width: 42px;
	height: 42px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 15px;
	flex-shrink: 0;
}

.info-panel-text h5 {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 5px;
	color: rgba(255, 255, 255, 0.85);
}

.info-panel-text a,
.info-panel-text p {
	color: white;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	line-height: 1.5;
	transition: 0.3s;
}

.info-panel-text a:hover {
	opacity: 0.85;
}

.info-panel-socials h5 {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 15px;
	color: rgba(255, 255, 255, 0.85);
}

.info-social-icons {
	display: flex;
	gap: 12px;
}

.info-social-icons a {
	width: 38px;
	height: 38px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-decoration: none;
	transition: 0.3s;
	font-size: 14px;
}

.info-social-icons a:hover {
	background: white;
	color: #1E91D6;
	transform: translateY(-3px);
}


/* ===== MAP SECTION ===== */
.map-section {
	padding: 80px 0;
	background: #fff;
}

.map-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
}

.map-header {
	text-align: center;
	margin-bottom: 40px;
}

.map-tagline {
	color: #1E91D6;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 10px;
}

.map-header h2 {
	font-size: 36px;
	font-weight: 700;
	color: #0a0a0a;
}

.map-wrapper {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
	display: block;
	width: 100%;
}


/* ===== CONTACT FAQ ===== */
.contact-faq {
	padding: 80px 0;
	background: #f8f9fa;
}

.contact-faq-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 30px;
}

.contact-faq-header {
	text-align: center;
	margin-bottom: 50px;
}

.contact-faq-tagline {
	color: #1E91D6;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 10px;
}

.contact-faq-header h2 {
	font-size: 36px;
	font-weight: 700;
	color: #0a0a0a;
	margin-bottom: 16px;
}

.contact-faq-desc {
	color: #555;
	font-size: 15px;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.7;
}

.contact-faq-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.contact-faq .faq-item {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	transition: 0.3s;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-faq .faq-item:hover {
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-faq .faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 24px;
	cursor: pointer;
	font-size: 15px;
	font-weight: 600;
	color: #0a0a0a;
}

.contact-faq .faq-question i {
	font-size: 12px;
	color: #1E91D6;
	transition: 0.3s;
}

.contact-faq .faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	padding: 0 24px;
}

.contact-faq .faq-item.active .faq-answer {
	max-height: 250px;
	padding: 0 24px 20px;
}

.contact-faq .faq-answer p {
	font-size: 14px;
	color: #555;
	line-height: 1.7;
}


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

@media (max-width: 1024px) {
	.contact-hero-content h1 {
		font-size: 40px;
	}

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

	.contact-form-grid {
		grid-template-columns: 1fr;
	}

	.map-header h2,
	.contact-faq-header h2 {
		font-size: 30px;
	}

	.contact-form-wrapper h2 {
		font-size: 28px;
	}
}

@media (max-width: 768px) {
	.contact-hero {
		padding: 60px 0;
	}

	.contact-hero-content h1 {
		font-size: 32px;
	}

	.contact-info-section {
		padding: 60px 0;
		margin-top: -30px;
	}

	.contact-form-section,
	.map-section,
	.contact-faq {
		padding: 60px 0;
	}

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

	.contact-info-panel {
		padding: 35px 25px;
	}

	.contact-form .form-row {
		grid-template-columns: 1fr;
	}

	.contact-form-wrapper h2 {
		font-size: 24px;
	}

	.info-panel-content h3 {
		font-size: 22px;
	}

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

	.contact-faq-header h2,
	.map-header h2 {
		font-size: 26px;
	}

	.contact-faq .faq-question {
		font-size: 14px;
		padding: 15px 18px;
	}

	.contact-faq .faq-item.active .faq-answer {
		padding: 0 18px 15px;
	}
}

@media (max-width: 600px) {
	.contact-info-grid {
		grid-template-columns: 1fr;
		max-width: 350px;
		margin: 0 auto;
	}
}

@media (max-width: 480px) {
	.contact-hero-content h1 {
		font-size: 26px;
	}

	.contact-hero-desc {
		font-size: 14px;
	}

	.contact-form-wrapper {
		padding: 28px 20px;
	}

	.contact-info-panel {
		padding: 28px 20px;
	}

	.contact-form input,
	.contact-form select,
	.contact-form textarea {
		font-size: 13px;
		padding: 11px 14px;
	}

	.form-submit-btn {
		width: 100%;
		justify-content: center;
		padding: 13px 22px;
		font-size: 14px;
	}

	.info-panel-item {
		gap: 12px;
	}

	.info-panel-icon {
		width: 38px;
		height: 38px;
		font-size: 14px;
	}

	.info-panel-text a,
	.info-panel-text p {
		font-size: 13px;
	}

	.map-wrapper iframe {
		height: 280px;
	}

	.contact-faq-header h2,
	.map-header h2 {
		font-size: 22px;
	}
}

/* Services */
/* ===== Services Section ===== */
#services {
	background: #07111f;
	padding: 5% 0;
}

/* Background Glow */
#services::before,
#services::after {
	content: "";
	position: absolute;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	filter: blur(120px);
	z-index: 0;
}


/* Section Heading */
#services h2 {
	text-align: center;
	color: #fff;
	margin-bottom: 18px;
}

#services .section-text {
	margin: 0 auto 70px;
	text-align: center;
	color: #a9bdd0;
}

/* Grid */
#services .services-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px;
	padding: 0 4%;
}

/* Card */
#services .service-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255,255,255,0.08);
	backdrop-filter: blur(14px);
	transition: all 0.4s ease;
	box-shadow: 0 10px 35px rgba(0,0,0,0.22);
}

/* Gradient Border */
#services .service-card::before {
	content: "";
	position: absolute;
	inset: 0;
	padding: 1px;
	border-radius: 28px;
	background: linear-gradient(135deg, #24bcff, transparent, #2ecc71);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0;
	transition: 0.4s ease;
}

#services .service-card:hover::before {
	opacity: 1;
}

#services .service-card:hover {
	transform: translateY(-10px);
	background: rgba(10, 20, 38, 0.92);
	box-shadow: 0 18px 45px rgba(36,188,255,0.18);
}

/* Decorative Glow */
#services .service-card::after {
	content: "";
	position: absolute;
	width: 160px;
	height: 160px;
	top: -70px;
	right: -70px;
	border-radius: 50%;
	background: rgba(36,188,255,0.14);
	filter: blur(45px);
}

/* Icon */
#services .service-icon {
	width: 78px;
	height: 78px;
	border-radius: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 28px;
	background: linear-gradient(135deg, #24bcff, #0f6fff);
	box-shadow: 0 10px 28px rgba(36,188,255,0.35);
	transition: all 0.4s ease;
}

#services .service-card:hover .service-icon {
	transform: scale(1.08) rotate(-5deg);
	box-shadow: 0 14px 35px rgba(36,188,255,0.45);
}

/* Content */
#services .service-card h3 {
	color: #fff;
	margin-bottom: 16px;
	font-weight: 700;
	line-height: 1.3;
}

#services .service-card p {
	color: #b8c8d8;
	line-height: 1.9;
	margin: 0;
}

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

@media (max-width: 991px) {
	#services {
		padding: 80px 0;
	}

	#services .services-grid {
		gap: 24px;
	}

	#services .service-card {
		padding: 34px 26px;
	}
}

@media (max-width: 767px) {
	#services .services-grid {
		grid-template-columns: 1fr;
	}

	#services .section-text {
		margin-bottom: 50px;
	}

	#services .service-card {
		border-radius: 22px;
	}
}

@media (max-width: 575px) {
	#services {
		padding: 70px 0;
	}

	#services .service-card {
		padding: 28px 22px;
	}

	#services .service-icon {
		width: 68px;
		height: 68px;
		margin-bottom: 22px;
	}
}


/* footer custom style */

footer .paragraph p {
	color: #fff;
}
footer .contact-area {
	margin-top: 8%;
}
footer .icon-text-wrapper {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
}
footer .icon-text-wrapper .text , footer .icon-text-wrapper .text a  {
	color: #fff;
	opacity: 0.5;
	text-align: left;
}
footer .icon-text-wrapper .text:hover , footer .icon-text-wrapper .text a:hover {
	opacity:1;
	cursor: pointer;
}
footer .icon-text-wrapper .icon i {
	color: #fff;

}
footer .icon-text-wrapper .icon i:hover {
	color: #2ecc71;
	cursor: pointer;
}

/* logo slider section */
.tech-slider-section{
	padding: 80px 20px;
	overflow: hidden;
}

.section-heading{
	text-align: center;
	margin-bottom: 50px;
}

.tech-slider{
	display: flex;
	gap: 20px;
	width: max-content;
	animation: techScroll 20s linear infinite;
}

.tech-slide{
	width: 180px;
	height: 180px;
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.tech-slide:hover{
	transform: translateY(-8px);
}

.tech-slide i{
	font-size: 55px;
	margin-bottom: 15px;
	background: linear-gradient(90deg, #1a75bb, #2ecc71);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

@keyframes techScroll{
	0%{
		transform: translateX(0);
	}
	100%{
		transform: translateX(-50%);
	}
}

/* Tablet */
@media (max-width: 768px){

	.tech-slider-section{
		padding: 60px 15px;
	}

	.tech-slide{
		width: 150px;
		height: 150px;
	}

	.tech-slide i{
		font-size: 45px;
	}
}

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

	.tech-slide{
		width: 130px;
		height: 130px;
	}

	.tech-slide i{
		font-size: 38px;
	}
} 

/* cta section  */

.cta-section{
	padding: 80px 20px;
	background-color:#000;
}

.cta-section .cta-content{
	max-width: 900px;
	margin: auto;
	text-align: center;
	padding: 60px 40px;
	border-radius: 30px;
	border: 1px solid rgba(255,255,255,0.1);
	background: rgba(255,255,255,0.03);
	backdrop-filter: blur(10px);
}

.cta-section .cta-content p{
	max-width: 650px;
	margin: 20px auto 35px;
}

.cta-section .cta-buttons{
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.cta-section .cta-buttons a{
	padding: 14px 30px;
	border-radius: 50px;
	text-decoration: none;
	transition: 0.3s ease;
	border: 1px solid transparent;
}

.cta-section .primary-btn{
	background: linear-gradient(90deg, #1a75bb, #2ecc71);
	color: #fff;
}

.cta-section .secondary-btn{
	border-color: rgba(255,255,255,0.2);
	color: #fff;
}

.cta-section .cta-buttons a:hover{
	transform: translateY(-5px);
}

/* Tablet */
@media (max-width: 768px){

	.cta-section .cta-content{
		padding: 50px 25px;
	}

	.cta-section .cta-buttons{
		gap: 15px;
	}
}

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

	.cta-section .cta-section{
		padding: 60px 15px;
	}

	.cta-section .cta-content{
		padding: 40px 20px;
	}

	.cta-section .cta-buttons{
		flex-direction: column;
	}

	.cta-section .cta-buttons a{
		width: 100%;
	}
}

/* Industry cards section */

.industries-section{
	padding: 80px 20px;
}

.industries-section .section-heading{
	text-align: center;
	max-width: 750px;
	margin: 0 auto 50px;
}

.industries-section .section-heading span{
	display: inline-block;
	margin-bottom: 12px;
	color: #2ecc71;
	letter-spacing: 1px;
}

.industries-section .section-heading p{
	margin-top: 15px;
}

.industries-section .industries-grid{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}

.industries-section .industry-card{
	padding: 35px 25px;
	border-radius: 20px;
	text-align: center;
	background: #fff;
	border: 1px solid rgba(0,0,0,0.08);
	transition: transform 0.3s ease;
}

.industries-section .industry-card:hover{
	transform: translateY(-8px);
}

.industries-section .icon{
	width: 85px;
	height: 85px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 34px;
}

.industries-section .healthcare{
	background: rgba(52,152,219,0.12);
	color: #3498db;
}

.industries-section .realestate{
	background: rgba(46,204,113,0.12);
	color: #2ecc71;
}

.industries-section .ecommerce{
	background: rgba(243,156,18,0.12);
	color: #f39c12;
}

.industries-section .education{
	background: rgba(155,89,182,0.12);
	color: #9b59b6;
}

.industries-section .restaurant{
	background: rgba(231,76,60,0.12);
	color: #e74c3c;
}

.industries-section .finance{
	background: rgba(52,152,219,0.12);
	color: #3498db;
}

.industries-section .industry-card h4{
	margin-bottom: 12px;
}

/* Tablet */
@media (max-width: 992px){

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

/* Mobile */
@media (max-width: 576px){

	.industries-section .industries-section{
		padding: 60px 15px;
	}

	.industries-section .industries-grid{
		grid-template-columns: 1fr;
	}

	.industries-section .industry-card{
		padding: 30px 20px;
	}
}


/* our process */

.process-section{
	padding: 80px 20px;
}

.process-section .section-heading{
	text-align: center;
	max-width: 700px;
	margin: 0 auto 50px;
}

.process-section .section-heading span{
	display: inline-block;
	margin-bottom: 10px;
	color: #2ecc71;
	letter-spacing: 1px;
}

.process-section .process-wrapper{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.process-section .process-card{
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 30px 25px;
	border-radius: 18px;
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.08);
}

.process-section .process-icon{
	min-width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
}

.process-section .process-content span{
	display: inline-block;
	margin-bottom: 8px;
	font-weight: 600;
}

.process-section .process-content h4{
	margin-bottom: 10px;
}

.process-section .blue{
	background: rgba(52,152,219,0.12);
	color: #3498db;
}

.process-section .green{
	background: rgba(46,204,113,0.12);
	color: #2ecc71;
}

.process-section .orange{
	background: rgba(243,156,18,0.12);
	color: #f39c12;
}

.process-section .purple{
	background: rgba(155,89,182,0.12);
	color: #9b59b6;
}

.process-section .pink{
	background: rgba(231,76,60,0.12);
	color: #e74c3c;
}

/* Tablet */
@media (max-width: 992px){

	.process-section .process-wrapper{
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Mobile */
@media (max-width: 576px){

	.process-section .process-section{
		padding: 60px 15px;
	}

	.process-section .process-wrapper{
		grid-template-columns: 1fr;
	}

	.process-section .process-card{
		padding: 25px 20px;
	}
}

/* trusted clients */
.trusted-section{
	position: relative;
	padding: 80px 0px;
	text-align: center;
	overflow: hidden;
}

/* Background Glow */

.trusted-section::before{
	content: "";
	position: absolute;
	top: -150px;
	left: 50%;
	transform: translateX(-50%);
	width: 500px;
	height: 500px;
	background: radial-gradient(
		circle,
		rgba(46, 204, 113, 0.12),
		transparent 70%
	);
	z-index: 0;
}

/* Content */

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

.trusted-section .trusted-label{
	display: inline-block;
	padding: 10px 22px;
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 50px;

	background: rgba(255,255,255,0.04);
	backdrop-filter: blur(10px);

	letter-spacing: 3px;
	text-transform: uppercase;

	margin-bottom: 50px;
}

/* Logo Wrapper */

.trusted-section .trusted-logos{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 35px;
}

/* Logo Cards */

.trusted-section .trusted-logos img{
	width: 140px;
	height: auto;

	padding: 25px;

	border-radius: 18px;

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

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

	backdrop-filter: blur(12px);

	opacity: 0.75;

	transition:
		transform 0.35s ease,
		opacity 0.35s ease,
		border-color 0.35s ease,
		box-shadow 0.35s ease;
}

/* Hover Effect */

.trusted-section .trusted-logos img:hover{
	opacity: 1;

	transform:
		translateY(-10px)
		scale(1.08);

	border-color: #2ecc71;

	box-shadow:
		0 10px 30px rgba(46, 204, 113, 0.2);
}

/* Responsive */

@media(max-width:768px){

	.trusted-section .trusted-section{
		padding: 70px 20px;
	}

	.trusted-section .trusted-logos{
		gap: 20px;
	}

	.trusted-section .trusted-logos img{
		width: 110px;
		padding: 18px;
	}

}

/* ui/ux services */
.uiux-services{
	padding: 80px 0px;
}

.uiux-services .container{
	display: grid;
	grid-template-columns: 350px 1fr;
	gap: 50px;
	align-items: start;
}

.uiux-services .services-head span{
	display: inline-block;
	padding: 10px 18px;
	border-radius: 50px;
	background: rgba(255,255,255,0.05);
	margin-bottom: 20px;
	letter-spacing: 2px;
}

.uiux-services .services-head h2{
	margin-bottom: 20px;
	line-height: 1.1;
}

.uiux-services .services-head p{
	margin-bottom: 30px;
	opacity: 0.8;
}

.uiux-services .services-head a{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	border-radius: 50px;
	background: #1a75bb;
	color: #fff;
	text-decoration: none;
	transition: 0.3s ease;
}

.uiux-services .services-head a:hover{
	transform: translateY(-3px);
}

.uiux-services .services-grid{
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 25px;
}

.uiux-services .service-card{
	padding: 30px 25px;
	border-radius: 24px;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.08);
	transition: 0.3s ease;
}

.uiux-services .service-card:hover{
	transform: translateY(-10px);
	border-color: #2ecc71;
}

.uiux-services .icon{
	width: 65px;
	height: 65px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 18px;
	background: rgba(46,204,113,0.1);
	margin-bottom: 20px;
	font-size: 28px;
}

.uiux-services .service-card h3{
	margin-bottom: 12px;
}

.uiux-services .service-card p{
	opacity: 0.8;
	line-height: 1.6;
}

@media(max-width:1200px){

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

}

@media(max-width:991px){

	.uiux-services .uiux-services .container{
		grid-template-columns: 1fr;
	}

}

@media(max-width:575px){

	.uiux-services .services-grid{
		grid-template-columns: 1fr;
	}

	.uiux-services{
		padding: 70px 20px;
	}

}

.seo-services {
	padding: 80px 20px;
}

.seo-services .container {
	max-width: 1200px;
	margin: 0 auto;
}

.seo-services .section-heading {
	text-align: center;
	margin-bottom: 50px;
}

.seo-services .section-heading span {
	display: inline-block;
	margin-bottom: 10px;
	font-weight: 600;
	color: #24bcff;
}

.seo-services .section-heading h2 {
	margin-bottom: 15px;
}

.seo-services .section-heading p {
	max-width: 700px;
	margin: 0 auto;
}

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

.seo-services .service-card {
	background: #fff;
	padding: 35px 25px;
	border-radius: 16px;
	transition: 0.3s ease;
	border: 1px solid #e5e5e5;
}

.seo-services .service-card:hover {
	transform: translateY(-8px);
}

.seo-services .service-icon {
	width: 65px;
	height: 65px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #24bcff;
	border-radius: 12px;
	margin-bottom: 20px;
	font-size: 28px;
}

.seo-services .service-card h3 {
	margin-bottom: 15px;
}

@media (max-width: 991px) {
	.seo-services .services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.seo-services .seo-services {
		padding: 60px 15px;
	}

	.seo-services .services-grid {
		grid-template-columns: 1fr;
	}

	.seo-services .service-card {
		padding: 30px 20px;
	}
}

.case-studies {
	padding: 80px 20px;
}

.case-studies .container {
	max-width: 1200px;
	margin: 0 auto;
}

.case-studies .section-heading {
	text-align: center;
	margin-bottom: 50px;
}

.case-studies .section-heading span {
	display: inline-block;
	margin-bottom: 10px;
	color: #24bcff;
	font-weight: 600;
}

.case-studies .section-heading h2 {
	margin-bottom: 15px;
}

.case-studies .section-heading p {
	max-width: 700px;
	margin: 0 auto;
}

.case-studies .case-grid {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.case-studies .case-card {
	display: flex;
	align-items: center;
	gap: 30px;
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 20px;
	overflow: hidden;
	transition: 0.3s ease;
}

.case-studies .case-card:hover {
	transform: translateY(-6px);
}

.case-studies .case-image {
	width: 45%;
}

.case-studies .case-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.case-studies .case-content {
	width: 55%;
	padding: 30px;
}

.case-studies .case-tag {
	display: inline-block;
	padding: 8px 16px;
	background: #24bcff;
	border-radius: 30px;
	margin-bottom: 20px;
	font-size: 14px;
	font-weight: 600;
}

.case-studies .case-content h3 {
	margin-bottom: 15px;
}

.case-studies .case-content p {
	margin-bottom: 25px;
}

.case-studies .case-results {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.case-studies .result-box {
	min-width: 110px;
	padding: 18px;
	border-radius: 14px;
	text-align: center;
	background: #f7f7f7;
}

.case-studies .result-box h4 {
	margin-bottom: 8px;
	color: #24bcff;
}

@media (max-width: 991px) {
	.case-studies .case-card {
		flex-direction: column;
	}

	.case-studies .case-image,
	.case-studies .case-content {
		width: 100%;
	}

	.case-studies .case-content {
		padding: 25px;
	}
}

@media (max-width: 767px) {
	.case-studies {
		padding: 60px 15px;
	}

	.case-studies .case-results {
		gap: 15px;
	}

	.case-studies .result-box {
		flex: 1 1 calc(50% - 15px);
	}
}

@media (max-width: 480px) {
	.case-studies .result-box {
		flex: 1 1 100%;
	}
}

.seo-team {
	padding: 80px 20px;
}

.seo-team .container {
	max-width: 1200px;
	margin: 0 auto;
}

.seo-team .seo-team-wrapper {
	display: flex;
	align-items: center;
	gap: 50px;
}

.seo-team .seo-team-image,
.seo-team .seo-team-content {
	width: 50%;
}

.seo-team .seo-team-image img {
	width: 100%;
	border-radius: 20px;
	display: block;
}

.seo-team .seo-team-content span {
	display: inline-block;
	margin-bottom: 12px;
	color: #24bcff;
	font-weight: 600;
}

.seo-team .seo-team-content h2 {
	margin-bottom: 20px;
}

.seo-team .seo-team-content p {
	margin-bottom: 18px;
}

.seo-team .team-points {
	margin-top: 30px;
}

.seo-team .team-point {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 22px;
}

.seo-team .team-icon {
	width: 45px;
	height: 45px;
	min-width: 45px;
	border-radius: 50%;
	background: #24bcff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
}

.seo-team .team-point h4 {
	margin-bottom: 6px;
}

.seo-team .team-btn {
	display: inline-block;
	margin-top: 15px;
	padding: 14px 28px;
	background: #24bcff;
	color: #fff;
	border-radius: 50px;
	text-decoration: none;
	transition: 0.3s ease;
}

.seo-team .team-btn:hover {
	transform: translateY(-4px);
}

@media (max-width: 991px) {
	.seo-team .seo-team-wrapper {
		flex-direction: column;
	}

	.seo-team .seo-team-image,
	.seo-team .seo-team-content {
		width: 100%;
	}
}

@media (max-width: 767px) {
	.seo-team {
		padding: 60px 15px;
	}

	.seo-team .seo-team-wrapper {
		gap: 35px;
	}
}