:root {
	--primary: #42c4dd;
	--primary-dark: #2a9fb4;
	--secondary: #2c3e50;
	--accent: #e74c3c;
	--light: #f8f9fa;
	--dark: #2c3e50;
	--text: #333;
	--gray: #95a5a6;
	--light-blue: #e1f7fa;
}

html {
  scroll-padding-top: 100px; /* match your header height */
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

a,
a:hover,
a:focus,
a:active,
a:visited {
  color: var(--primary);
}
p {
	padding-bottom:10px;
}

body {
	background-color: #ffffff;
	color: var(--text);
	line-height: 1.6;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header Styles */
header {
	background-color: white;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
}

.logo {
	display: flex;
	align-items: center;
}

.logo img {
	height: 50px;
	margin-right: 15px;
}

.logo h1 {
	font-size: 24px;
	color: var(--secondary);
}

.logo span {
	color: var(--primary);
}

nav ul {
	display: flex;
	list-style: none;
}

nav li {
	margin-left: 25px;
}
.cta-container a, a.login-btn, .cta-btn, .case-request, .case-learn {
	color: white !important;
}

nav a {
	text-decoration: none;
	color: var(--dark) !important;
	font-weight: 600;
	font-size: 16px;
	transition: color 0.3s;
	position: relative;
}

nav a:hover {
	color: var(--primary) !important;
}

nav a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -5px;
	left: 0;
	background-color: var(--primary);
	transition: width 0.3s;
}

nav a:hover::after {
	width: 100%;
}

/* Dropdown styling */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 100;
    border-radius: 6px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    transition: background 0.2s;
    border-bottom: 1px solid #f0f4f8;
}

a.dropdown-content-divider {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    transition: background 0.2s;
    border-bottom: 1px solid #bbb;
}
a.dropdown-content-divider:hover {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    transition: background 0.2s;
    border-bottom: 1px solid #fff;
}

.login-btn {
	background-color: var(--primary);
	color: white;
	padding: 8px 20px;
	border-radius: 4px;
	font-weight: 600;
	transition: background-color 0.3s;
}

.login-btn:hover {
	background-color: var(--primary-dark);
	color: white !important;
}

.mobile-menu {
	display: none;
	font-size: 24px;
	cursor: pointer;
	color: var(--secondary);
}

/* Hero Section */
.hero {
	background: linear-gradient(to right, rgba(0,0,0, 0.0), rgba(0,0,0, 0.0), rgba(0,0,0, 0.6), rgba(0,0,0, 0.0), rgba(0,0,0, 0.0)), url('https://pcsso.com/images/pixelsprofit2.jpg');
	background-size: cover;
	background-position: center;
	color: white;
	text-align: center;
	padding: 100px 0;
}

.hero h2 {
	font-size: 3.5rem;
	margin-bottom: 20px;
	animation: fadeIn 1s ease-out;
}

.hero p {
	font-size: 1.5rem;
	max-width: 800px;
	margin: 0 auto 40px;
	animation: fadeIn 1.2s ease-out;
}

.cta-btn {
	display: inline-block;
	background-color: var(--primary);
	color: white;
	padding: 15px 40px;
	border-radius: 4px;
	font-size: 18px;
	font-weight: 600;
	text-decoration: none;
	transition: background-color 0.3s, transform 0.3s;
	animation: pulse 2s infinite;
}

.cta-btn:hover {
	background-color: var(--primary-dark);
	transform: translateY(-3px);
}

/* Overview Section */
.overview {
	padding: 80px 0;
	background-color: white;
}

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

.section-title h2 {
	font-size: 2.5rem;
	color: var(--secondary);
	position: relative;
	display: inline-block;
	padding-bottom: 15px;
}

.section-title h2::after {
	content: '';
	position: absolute;
	width: 70px;
	height: 4px;
	background-color: var(--primary);
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.section-title p {
	color: black;
	font-size: 1.2rem;
	max-width: 700px;
	margin: 20px auto 0;
}

.overview-content {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-top: 40px;
}

.overview-text {
	flex: 1;
	min-width: 300px;
}

.overview-text h3 {
	font-size: 1.8rem;
	margin-bottom: 20px;
	color: var(--dark);
}

.overview-image {
	flex: 1;
	min-width: 300px;
	background: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Capabilities Section */
.capabilities {
	padding: 80px 0;
	background-color: var(--light-blue);
}

.cap-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.cap-card {
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	transition: transform 0.3s, box-shadow 0.3s;
	border-top: 4px solid var(--primary);
}

.cap-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(66, 196, 221, 0.2);
}

.cap-icon {
	height: 150px;
	background-color: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 60px;
	color: white;
}

.cap-content {
	padding: 25px;
}

.cap-content h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
	color: var(--primary);
}

.cap-content ul {
	list-style-type: none;
	margin-top: 15px;
}

.cap-content ul li {
	padding: 8px 0;
	padding-left: 25px;
	position: relative;
}

.cap-content ul li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--primary);
	font-weight: bold;
}

/* Offerings Section */
.offerings {
	padding: 80px 0;
	background-color: white;
}

.offer-tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-bottom: 40px;
}

.tab-btn {
	padding: 12px 25px;
	background: #eef2f7;
	border: none;
	border-radius: 30px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	color: var(--secondary);
}

.tab-btn.active, .tab-btn:hover {
	background: var(--primary);
	color: white;
}

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

.offer-card {
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	border: 1px solid #eee;
	transition: all 0.3s;
	display: flex;
	flex-direction: column;
	height: 100%; /* Important for equal height cards */

}

.offer-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(66, 196, 221, 0.2);
	border-color: var(--primary);
}

.offer-header {
	background: var(--primary);
	color: white;
	padding: 20px;
	text-align: center;
}
.offer-body {
	padding: 25px;
	display: flex;
	flex-direction: column;
	flex-grow: 1; /* Takes all available space */
}

.offer-body ul {
	list-style-type: none;
	margin: 10px 0;
}

.offer-body ul li {
	padding: 4px 0;
	padding-left: 25px;
	position: relative;
}

.offer-body ul li::before {
	content: '•';
	position: absolute;
	left: 10px;
	color: var(--primary);
	font-weight: bold;
}

.offer-learn {
	display: inline-block;
	margin-top: 15px;
	color: var(--primary);
	font-weight: 600;
	text-decoration: none;
	border-bottom: 2px solid var(--primary);
	padding-bottom: 3px;
}

.content-wrap {
  flex-grow: 1; /* Pushes footer to bottom */
}

/* Footer styling */
.offer-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 0px;
  padding-top: 0px;
}

.learn-more-container {
  display: inline-block;
}

.offer-learn {
  display: inline-block;
  padding-bottom: 2px;
}

.type-icon {
  color: var(--primary);
  font-size: 1.2em;
  margin-left: 10px;
  flex-shrink: 0; /* Prevents icon from shrinking */
}

/* Testimonials Section */
.testimonials {
	padding: 80px 0;
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	color: white;
}

.testimonial-container {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
}

.testimonial-slide {
	text-align: center;
	padding: 30px;
}

.testimonial-text {
	font-size: 1.8rem;
	font-style: italic;
	margin-bottom: 30px;
	position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
	content: '"';
	font-size: 3rem;
	position: absolute;
	opacity: 0.3;
}

.testimonial-text::before {
	top: -20px;
	left: -20px;
}

.testimonial-text::after {
	bottom: -40px;
	right: -20px;
}

.testimonial-author {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.author-img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: #eee;
	margin-bottom: 15px;
	overflow: hidden;
	border: 3px solid rgba(255,255,255,0.3);
}

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

.author-info h4 {
	font-size: 1.3rem;
	margin-bottom: 5px;
}

.author-info p {
	color: rgba(255,255,255,0.7);
}

/* Why Choose Us */
.why-choose {
	padding: 80px 0;
	background-color: white;
}

.stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.stat-card {
	text-align: center;
	padding: 30px;
	border-radius: 8px;
	background: var(--light-blue);
	transition: all 0.3s;
	border: 1px solid var(--primary);
}

.stat-card:hover {
	background: var(--primary);
	color: white;
	transform: translateY(-10px);
}

.stat-card:hover .stat-value {
	color: white;
}

.stat-value {
	font-size: 3.5rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 10px;
}

.stat-title {
	font-size: 1.2rem;
	font-weight: 600;
}

/* Footer */
footer {
	background-color: var(--secondary);
	color: white;
	padding: 70px 0 20px;
}

.footer-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-col h3 {
	font-size: 1.3rem;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 10px;
}

.footer-col h3::after {
	content: '';
	position: absolute;
	width: 50px;
	height: 3px;
	background: var(--primary);
	bottom: 0;
	left: 0;
}

.footer-col ul {
	list-style: none;
}

.footer-col ul li {
	margin-bottom: 15px;
}

.footer-col ul li a {
	color: #bbb;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-col ul li a:hover {
	color: var(--primary);
	padding-left: 5px;
}

.social-links {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255,255,255,0.1);
	border-radius: 50%;
	color: white;
	transition: all 0.3s;
}

.social-links a:hover {
	background: var(--primary);
	transform: translateY(-5px);
}

.copyright {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(255,255,255,0.1);
	color: #bbb;
	font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
	0% { box-shadow: 0 0 0 0 rgba(66, 196, 221, 0.7); }
	70% { box-shadow: 0 0 0 15px rgba(66, 196, 221, 0); }
	100% { box-shadow: 0 0 0 0 rgba(66, 196, 221, 0); }
}

/* Responsive Design */
@media (max-width: 992px) {
	.hero h2 {
		font-size: 2.8rem;
	}
	
	.hero p {
		font-size: 1.3rem;
	}
	
	nav ul {
		display: none;
		position: absolute;
		top: 80px;
		left: 0;
		width: 100%;
		background: white;
		flex-direction: column;
		box-shadow: 0 10px 10px rgba(0,0,0,0.1);
	}
	
	nav ul.show {
		display: flex;
	}
	
	nav li {
		margin: 0;
		padding: 15px 20px;
		border-bottom: 1px solid #eee;
	}
	
	.mobile-menu {
		display: block;
	}
}

@media (max-width: 768px) {
	.hero {
		padding: 70px 0;
	}
	
	.hero h2 {
		font-size: 2.3rem;
	}
	
	.hero p {
		font-size: 1.1rem;
	}
	
	.section-title h2 {
		font-size: 2rem;
	}
}


/* Details page */

.pagedetails-banner h1 {
	font-size: 3.5rem;
	margin-bottom: 20px;
	font-weight: 700;
}

.pagedetails-banner p {
	font-size: 1.5rem;
	max-width: 800px;
	margin: 0 auto;
	opacity: 0.9;
}

.pagedetails-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
}

.pagedetails-section {
	margin-bottom: 60px;
}

.pagedetails-section h2 {
	color: var(--secondary);
	font-size: 2.2rem;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 15px;
}

.pagedetails-section h2::after {
	content: '';
	position: absolute;
	width: 70px;
	height: 4px;
	background-color: var(--primary);
	bottom: 0;
	left: 0;
}

.pagedetails-content h2 {
	color: var(--secondary);
	font-size: 2.2rem;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 15px;
}

.pagedetails-content h2::after {
	content: '';
	position: absolute;
	width: 70px;
	height: 4px;
	background-color: var(--primary);
	bottom: 0;
	left: 0;
}
.pagedetails-section p {
	margin-bottom: 20px;
	line-height: 1.8;
}

.pagedetails-section ul, .pagedetails-section ol {
	margin: 20px 0;
	padding-left: 30px;
}

.pagedetails-section li {
	margin-bottom: 12px;
	line-height: 1.6;
}

.split-layout {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin: 40px 0;
}

.split-left {
	flex: 1;
	min-width: 300px;
	background-color: var(--secondary);
	color: white;
	padding: 40px;
	border-radius: 8px;
}

.split-left-white {
	flex: 1;
	min-width: 300px;
	background-color: white;
	padding: 40px;
	border-radius: 8px;
}

.split-left h3 {
	color: var(--primary);
	font-size: 1.8rem;
	margin-bottom: 20px;
}

.split-left ul {
	list-style-type: none;
	padding-left: 0;
}

.split-left li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 15px;
}

.split-left li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--primary);
	font-weight: bold;
	font-size: 1.2rem;
}

.split-right {
	flex: 1;
	min-width: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.split-right img {
	max-width: 100%;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.centered-image {
	text-align: center;
	margin: 30px 0;
}

.centered-image img {
	max-width: 100%;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

code {
	background-color: var(--light-blue);
	padding: 2px 6px;
	border-radius: 4px;
	font-family: monospace;
	color: var(--secondary);
}

.nav-links {
	background-color: var(--light-blue);
	padding: 20px;
	border-radius: 8px;
	margin: 30px 0;
}

.nav-links ol {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
	list-style-type: none;
	padding-left: 0;
	margin: 0;
}

.nav-links li {
	margin-bottom: 0;
}

.nav-links a {
	color: var(--primary);
	font-weight: 600;
	text-decoration: none;
	padding: 8px 15px;
	border: 2px solid var(--primary);
	border-radius: 30px;
	transition: all 0.3s;
}

.nav-links a:hover {
	background-color: var(--primary);
	color: white;
}

@media (max-width: 768px) {
	.pagedetails-banner h1 {
		font-size: 2.5rem;
	}
	
	.pagedetails-banner p {
		font-size: 1.2rem;
	}
	
	.pagedetails-section h2 {
		font-size: 1.8rem;
	}
	
	.split-left, .split-right {
		flex: 100%;
	}
}

.capabilities-demo-image {
	height:100%;
	max-height:550px;
	object-fit: cover;
	object-position: center;
}
.capabilities-image {
	width:100%;
	height:450px;
	object-fit: cover;
	object-position: center;
}

.clientlogoblack {
  position: absolute;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.5);
  max-width: 420px;
}