* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Inter', 'Arial', sans-serif;
	background-color: #0a0a0a;
	color: #e0e0e0;
	line-height: 1.6;
	overflow-x: hidden;
}

/* ========== CUSTOM SCROLLBAR ========== */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(45deg, #00e5ff, #9c27b0);
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(45deg, #0297ff, #7b1fa2);
}

/* ========== TYPOGRAPHY ========== */
h1 {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	color: #00e5ff;
}

h2 {
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 1.25rem;
	color: #e0e0e0;
}

h3 {
	font-size: 1.875rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #00e5ff;
}

h4 {
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 0.875rem;
	color: #e0e0e0;
}

p {
	font-size: 1.1rem;
	margin-bottom: 1rem;
	color: #e0e0e0;
	opacity: 0.9;
}

/* ========== LAYOUT CONTAINERS ========== */
.apc-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.apc-section {
	padding: 80px 0;
	position: relative;
}

.apc-section-alt {
	background: #0f0f0f;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* ========== HEADER STYLES ========== */
.apc-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(10, 10, 10, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(0, 229, 255, 0.2);
	transition: all 0.3s ease;
}

.apc-header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.apc-logo {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	text-decoration: none;
	transition: all 0.3s ease;
}

.apc-logo-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #00e5ff, #9c27b0);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0a0a0a;
	font-size: 1.2rem;
	font-weight: bold;
}

.apc-logo-text {
	font-size: 1.8rem;
	font-weight: 700;
	color: #00e5ff;
}

.apc-logo:hover {
	transform: scale(1.05);
}

.apc-nav {
	display: flex;
	gap: 2rem;
	align-items: center;
}

.apc-nav-link {
	text-decoration: none;
	color: #e0e0e0;
	font-weight: 500;
	font-size: 1rem;
	padding: 0.5rem 1rem;
	border-radius: 25px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.apc-nav-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(0, 229, 255, 0.1),
		transparent
	);
	transition: left 0.5s ease;
}

.apc-nav-link:hover::before {
	left: 100%;
}

.apc-nav-link:hover {
	color: #00e5ff;
	background: rgba(0, 229, 255, 0.1);
	transform: translateY(-2px);
}

.apc-nav-link.apc-active {
	background: linear-gradient(135deg, #00e5ff, #9c27b0);
	color: #0a0a0a;
	font-weight: 600;
}

/* ========== MOBILE MENU ========== */
.apc-mobile-toggle {
	display: none;
	background: none;
	border: none;
	color: #e0e0e0;
	font-size: 1.5rem;
	cursor: pointer;
	padding: 0.5rem;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.apc-mobile-toggle:hover {
	background: rgba(0, 229, 255, 0.1);
	color: #00e5ff;
}

/* ========== HERO SECTION ========== */
.apc-hero {
	min-height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: linear-gradient(
		135deg,
		rgba(10, 10, 10, 0.8),
		rgba(15, 15, 15, 0.6)
	);
}

.apc-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('assets/apc-hero.png') center/cover;
	opacity: 0.2;
	z-index: 1;
}

.apc-hero-content {
	text-align: center;
	z-index: 2;
	position: relative;
	animation: apc-fadeInUp 1s ease-out;
}

.apc-hero-heading {
	font-size: 4rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	color: #00e5ff;
}

.apc-hero-subheading {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #e0e0e0;
	opacity: 0.8;
	font-weight: 300;
}

.apc-hero-description {
	font-size: 1.2rem;
	margin-bottom: 2.5rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	opacity: 0.7;
}

.apc-hero-buttons {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	align-items: center;
}

/* ========== BUTTON STYLES ========== */
.apc-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	border: none;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	width: 240px;
	height: 60px;
	justify-content: center;
}

.apc-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.5s ease;
}

.apc-btn:hover::before {
	left: 100%;
}

.apc-btn-primary {
	background: #00e5ff;
	color: #0a0a0a;
	box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
}

.apc-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(0, 229, 255, 0.4), 0 0 30px rgba(0, 229, 255, 0.5);
	background: #0297ff;
}

.apc-btn-secondary {
	background: transparent;
	color: #9c27b0;
	border: 2px solid #9c27b0;
	box-shadow: 0 4px 15px rgba(156, 39, 176, 0.2);
}

.apc-btn-secondary:hover {
	background: #9c27b0;
	color: #0a0a0a;
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(156, 39, 176, 0.4),
		0 0 30px rgba(156, 39, 176, 0.3);
}

/* ========== CARD STYLES ========== */
.apc-card {
	background: #0f0f0f;
	border-radius: 8px;
	padding: 2rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(0, 229, 255, 0.1);
}

.apc-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #00e5ff, #9c27b0);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.apc-card:hover::before {
	transform: scaleX(1);
}

.apc-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 229, 255, 0.1);
	border-color: rgba(0, 229, 255, 0.3);
}

.apc-card-icon {
	font-size: 3rem;
	color: #00e5ff;
	margin-bottom: 1.5rem;
}

.apc-card-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #e0e0e0;
}

.apc-card-description {
	color: #e0e0e0;
	opacity: 0.8;
	line-height: 1.6;
}

.apc-card-stat {
	font-size: 2.5rem;
	font-weight: 700;
	color: #00e5ff;
	margin-top: auto;
}

/* ========== GRID LAYOUTS ========== */
.apc-grid {
	display: grid;
	gap: 2rem;
}

.apc-grid-2 {
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.apc-grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.apc-grid-4 {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.apc-grid-6 {
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

/* ========== WHY US SECTION ========== */
.apc-why-us {
	padding: 80px 0;
	background: #0a0a0a;
}

.apc-why-us-header {
	text-align: center;
	margin-bottom: 3rem;
}

.apc-why-us-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.apc-why-us-card {
	text-align: center;
	padding: 2rem;
	border-radius: 8px;
	transition: all 0.3s ease;
	background: #0f0f0f;
	border: 1px solid rgba(0, 229, 255, 0.1);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.apc-why-us-card:hover {
	transform: translateY(-5px);
	background: #151515;
	border-color: rgba(0, 229, 255, 0.3);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.apc-why-statistic {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.apc-why-us-icon {
	font-size: 3rem;
	color: #00e5ff;
	margin-bottom: 1.5rem;
}

.apc-why-us-title {
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #e0e0e0;
}

.apc-why-us-description {
	color: #e0e0e0;
	opacity: 0.8;
	line-height: 1.5;
}

/* ========== PROCESS SECTION ========== */
.apc-process {
	padding: 80px 0;
	background: #0f0f0f;
}

.apc-process-header {
	text-align: center;
	margin-bottom: 3rem;
}

.apc-process-timeline {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 2rem;
	position: relative;
}

.apc-process-step {
	text-align: center;
	padding: 2rem;
	border-radius: 8px;
	background: #0a0a0a;
	border: 2px solid rgba(156, 39, 176, 0.3);
	transition: all 0.3s ease;
	position: relative;
}

.apc-process-step:hover {
	transform: translateY(-5px);
	border-color: #9c27b0;
	box-shadow: 0 8px 25px rgba(156, 39, 176, 0.2);
}

.apc-process-number {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #00e5ff, #9c27b0);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	color: #0a0a0a;
	margin: 0 auto 1.5rem;
}

.apc-process-title {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #e0e0e0;
}

.apc-process-description {
	color: #e0e0e0;
	opacity: 0.8;
	line-height: 1.5;
}

/* ========== TECH STACK SECTION ========== */
.apc-tech-stack {
	padding: 80px 0;
	background: #0a0a0a;
}

.apc-tech-stack-header {
	text-align: center;
	margin-bottom: 3rem;
}

.apc-tech-stack-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 2rem;
	align-items: center;
}

.apc-tech-item {
	text-align: center;
	padding: 1.5rem;
	border-radius: 8px;
	transition: all 0.3s ease;
	background: #0f0f0f;
	border: 1px solid rgba(0, 229, 255, 0.1);
}

.apc-tech-item:hover {
	background: #151515;
	transform: scale(1.05);
	border-color: rgba(0, 229, 255, 0.3);
	box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}

.apc-tech-icon {
	font-size: 3rem;
	color: #00e5ff;
	margin-bottom: 1rem;
}

.apc-tech-name {
	font-weight: 600;
	color: #e0e0e0;
	font-size: 1.1rem;
}

/* ========== TESTIMONIALS SECTION ========== */
.apc-testimonials {
	padding: 80px 0;
	background: #0f0f0f;
}

.apc-testimonials-header {
	text-align: center;
	margin-bottom: 3rem;
}

.apc-testimonials-slider {
	position: relative;
	overflow: hidden;
}

.apc-testimonials-track {
	display: flex;
	transition: transform 0.5s ease;
}

.apc-testimonial-card {
	min-width: 100%;
	padding: 2rem;
	background: #0a0a0a;
	border-radius: 8px;
	text-align: center;
	border: 1px solid rgba(156, 39, 176, 0.2);
}

.apc-testimonial-avatar {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: linear-gradient(135deg, #00e5ff, #9c27b0);
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: #0a0a0a;
	font-weight: bold;
}

.apc-testimonial-avatar img {
	width: 95%;
	height: 95%;
	border-radius: 50%;

	object-fit: cover;
}

.apc-testimonial-text {
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
	font-style: italic;
	color: #e0e0e0;
}

.apc-testimonial-author {
	font-weight: 600;
	color: #00e5ff;
	margin-bottom: 0.5rem;
}

.apc-testimonial-company {
	color: #9c27b0;
	font-size: 0.9rem;
}

/* ========== CONTACT SECTION ========== */
.apc-contact {
	padding: 80px 0;
	background: #0a0a0a;
}

.apc-contact-header {
	text-align: center;
	margin-bottom: 3rem;
}

.apc-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
}

.apc-contact-form {
	background: #0f0f0f;
	padding: 2rem;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
	border: 1px solid rgba(0, 229, 255, 0.1);
}

.apc-contact-form h3 {
	color: #00e5ff;
	margin-bottom: 2rem;
}

.apc-form-group {
	margin-bottom: 1.5rem;
}

.apc-form-label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #e0e0e0;
	font-size: 1rem;
}

.apc-form-control {
	width: 100%;
	padding: 0.875rem 1rem;
	border: 2px solid rgba(0, 229, 255, 0.2);
	border-radius: 6px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: #0a0a0a;
	color: #e0e0e0;
}

.apc-form-control::placeholder {
	color: rgba(224, 224, 224, 0.5);
}

.apc-form-control:focus {
	outline: none;
	border-color: #00e5ff;
	box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

.apc-form-textarea {
	min-height: 120px;
	resize: vertical;
}

.apc-form-submit {
	width: 100%;
	background: #00e5ff;
	color: #0a0a0a;
	border: none;
	padding: 1rem;
	border-radius: 6px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.apc-form-submit:hover:not(:disabled) {
	background: #0297ff;
	transform: translateY(-2px);
	box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.apc-form-submit:disabled {
	background: rgba(0, 229, 255, 0.3);
	cursor: not-allowed;
}

.apc-form-error {
	color: #ff5722;
	font-size: 0.875rem;
	margin-top: 0.25rem;
	min-height: 1.2rem;
}

.apc-map-container {
	background: #0f0f0f;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
	height: 100%;
	border: 1px solid rgba(0, 229, 255, 0.1);
}

/* Map Section */
.apc-map {
	height: 100%;

	border-radius: 1rem;
	overflow: hidden;
	filter: grayscale(100%) invert(92%) contrast(83%);
}

@media (max-width: 768px) {
	.apc-map {
		height: 400px;
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.apc-contact-map {
	position: relative;
	height: 100%;

	/* flex: 1; */

	/* margin-top: 2rem; */
	/* border-radius: 10px; */
	/* overflow: hidden; */
}

.apc-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 1rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

.apc-error-message {
	display: block;
	color: #ff4444;
	font-size: 0.85rem;
	margin-top: 0.5rem;
}

/* ========== SERVICES PAGE STYLES ========== */
.apc-services-hero {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #0a0a0a, #0f0f0f);
	text-align: center;
}

.apc-service-section {
	padding: 60px 0;
	border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}

.apc-service-content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}

.apc-service-text h3 {
	color: #00e5ff;
	margin-bottom: 1.5rem;
}

.apc-service-text ul {
	padding-left: 1.2rem;
}

.apc-service-visual {
	text-align: center;
	padding: 2rem;
	background: #0f0f0f;
	border-radius: 8px;
	border: 1px solid rgba(156, 39, 176, 0.2);
}

.apc-service-visual i {
	font-size: 4rem;
	color: #9c27b0;
	margin-bottom: 1rem;
}

/* ========== CASE STUDIES PAGE STYLES ========== */
.apc-case-studies-hero {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #0a0a0a, #0f0f0f);
	text-align: center;
}

.apc-case-study {
	padding: 60px 0;
	border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}

.apc-case-study:nth-child(even) .apc-case-content {
	grid-template-columns: 1fr 2fr;
}

.apc-case-content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 3rem;
	align-items: center;
}

.apc-case-image {
	background: #0f0f0f;
	padding: 2rem;
	border-radius: 8px;
	text-align: center;
	border: 1px solid rgba(0, 229, 255, 0.1);
}

.apc-case-image i {
	font-size: 5rem;
	color: #00e5ff;
}

/* ========== TEAM PAGE STYLES ========== */
.apc-team-hero {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #0a0a0a, #0f0f0f);
	text-align: center;
}

.apc-team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.apc-team-member {
	background: #0f0f0f;
	border-radius: 8px;
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid rgba(0, 229, 255, 0.1);
}

.apc-team-member:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
	border-color: rgba(0, 229, 255, 0.3);
}

.apc-team-avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: linear-gradient(135deg, #00e5ff, #9c27b0);
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: #0a0a0a;
	font-weight: bold;
}

.apc-team-avatar img {
	width: 90%;
	height: 90%;
	border-radius: 50%;

	object-fit: cover;
}

.apc-team-name {
	font-size: 1.3rem;
	font-weight: 600;
	color: #e0e0e0;
	margin-bottom: 0.5rem;
}

.apc-team-role {
	color: #00e5ff;
	font-weight: 500;
	margin-bottom: 1rem;
}

.apc-team-description {
	color: #e0e0e0;
	opacity: 0.8;
	line-height: 1.5;
}

/* ========== FOOTER STYLES ========== */
.apc-footer {
	background: #000000;
	color: #e0e0e0;
	padding: 3rem 0 1rem;
	border-top: 1px solid rgba(0, 229, 255, 0.2);
}

.apc-footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.apc-footer-section h3 {
	color: #00e5ff;
	margin-bottom: 1.5rem;
	font-size: 1.2rem;
}

.apc-footer-links {
	list-style: none;
	padding: 0;
}

.apc-footer-links li {
	margin-bottom: 0.8rem;
}

.apc-footer-links a {
	color: #e0e0e0;
	text-decoration: none;
	opacity: 0.8;
	transition: all 0.3s ease;
}

.apc-footer-links a:hover {
	opacity: 1;
	color: #00e5ff;
	transform: translateX(5px);
}

.apc-footer-contact-info p {
	margin-bottom: 0.5rem;
	opacity: 0.8;
	font-size: 0.95rem;
}

.apc-newsletter-form {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-top: 1rem;
}

.apc-newsletter-input {
	flex: 1;
	padding: 0.75rem;
	border: 1px solid rgba(0, 229, 255, 0.3);
	border-radius: 6px;
	background: #0a0a0a;
	color: #e0e0e0;
}

.apc-newsletter-btn {
	background: #00e5ff;
	color: #0a0a0a;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.apc-newsletter-btn:hover {
	background: #0297ff;
	transform: translateY(-2px);
}

.apc-footer-bottom {
	border-top: 1px solid rgba(0, 229, 255, 0.1);
	padding-top: 1.5rem;
	text-align: center;
}

.apc-footer-bottom p {
	opacity: 0.7;
	margin: 0;
}

/* ========== COOKIE BANNER ========== */
.apc-cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #000000;
	color: #e0e0e0;
	padding: 1.5rem;
	z-index: 1001;
	transform: translateY(100%);
	transition: transform 0.3s ease;
	box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.5);
	border-top: 1px solid rgba(0, 229, 255, 0.2);
}

.apc-cookie-banner.show {
	transform: translateY(0);
}

.apc-cookie-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	gap: 2rem;
}

.apc-cookie-text h3 {
	color: #00e5ff;
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
}

.apc-cookie-text p {
	margin: 0;
	opacity: 0.9;
	font-size: 0.95rem;
}

.apc-cookie-text a {
	color: #00e5ff;
	text-decoration: underline;
}

.apc-cookie-buttons {
	display: flex;
	gap: 1rem;
	flex-shrink: 0;
}

.apc-cookie-btn {
	background: #00e5ff;
	color: #0a0a0a;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.apc-cookie-btn:hover {
	background: #0297ff;
	transform: translateY(-2px);
}

/* ========== ANIMATIONS ========== */
@keyframes apc-fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes apc-slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes apc-slideInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes apc-zoomIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes apc-glow {
	0%,
	100% {
		box-shadow: 0 0 5px rgba(0, 229, 255, 0.5);
	}
	50% {
		box-shadow: 0 0 20px rgba(0, 229, 255, 0.8);
	}
}

.hidden {
	display: none;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
	.apc-container {
		padding: 0 15px;
	}

	.apc-hero-heading {
		font-size: 3.2rem;
	}

	.apc-contact-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.apc-service-content,
	.apc-case-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.apc-case-study:nth-child(even) .apc-case-content {
		grid-template-columns: 1fr !important;
	}
}

@media (max-width: 992px) {
	.apc-nav {
		display: none;
	}
	.hidden {
		display: flex;
	}

	.apc-nav-mobile-open {
		display: flex;
		top: 100%;
		position: fixed;
		flex-direction: column;
		justify-content: center;
		left: 0;
		width: 100%;
		padding: 20px 0;
		align-items: center;
		background-color: #0a0a0a;
	}

	.apc-mobile-toggle {
		display: block;
	}
}

/* Tablets */
@media (max-width: 768px) {
	.apc-hero-heading {
		font-size: 2.8rem;
	}

	.apc-hero-subheading {
		font-size: 1.3rem;
	}

	.apc-hero-buttons {
		align-items: center;
	}

	.apc-why-us-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	h1 {
		font-size: 3rem;
	}

	h2 {
		font-size: 2.2rem;
	}

	.apc-cookie-content {
		flex-direction: column;
		align-items: flex-start;
	}

	.apc-why-us-grid {
		grid-template-columns: 1fr;
	}
}

/* Mobile */
@media (max-width: 480px) {
	.apc-hero-heading {
		font-size: 2.2rem;
	}

	h1 {
		font-size: 1.5rem;
		word-wrap: break-word;
	}

	.apc-logo-text {
		font-size: 1.5rem;
	}

	.apc-why-us-grid,
	.apc-process-timeline,
	.apc-tech-stack-grid {
		grid-template-columns: 1fr;
	}

	.apc-team-grid,
	.apc-grid-3 {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}

	.apc-card {
		padding: 1.5rem;
	}

	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 1.5rem;
		word-wrap: break-word;
	}

	h3 {
		font-size: 1.3rem;
	}

	.apc-hero-heading {
		font-size: 2rem;
	}

	.apc-logo-text {
		font-size: 1.3rem;
	}

	.apc-footer-content {
		grid-template-columns: 1fr;
	}

	.apc-newsletter-form {
		flex-direction: column;
	}

	.apc-contact-grid {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}
}

/* Print Styles */
@media print {
	.apc-header,
	.apc-footer,
	.apc-cookie-banner {
		display: none;
	}

	body {
		background: #ffffff;
		color: #000000;
	}

	.apc-container {
		max-width: 100%;
		padding: 0;
		margin: 0;
	}
}

.apc-contact-hero {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #0a0a0a, #0f0f0f);
	text-align: center;
}

.apc-contact {
	padding: 80px 0;
	background: #0a0a0a;
}

.apc-contact-header {
	text-align: center;
	margin-bottom: 3rem;
}

.apc-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
}

.apc-contact-form {
	background: #0f0f0f;
	padding: 2rem;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
	border: 1px solid rgba(0, 229, 255, 0.1);
}

.apc-contact-form h3 {
	color: #00e5ff;
	margin-bottom: 2rem;
}

.apc-form-group {
	margin-bottom: 1.5rem;
}

.apc-form-label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #e0e0e0;
	font-size: 1rem;
}

.apc-form-control {
	width: 100%;
	padding: 0.875rem 1rem;
	border: 2px solid rgba(0, 229, 255, 0.2);
	border-radius: 6px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: #0a0a0a;
	color: #e0e0e0;
}

.apc-form-control::placeholder {
	color: rgba(224, 224, 224, 0.5);
}

.apc-form-control:focus {
	outline: none;
	border-color: #00e5ff;
	box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

.apc-form-textarea {
	min-height: 120px;
	resize: vertical;
}

.apc-form-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.apc-form-checkbox input[type='checkbox'] {
	width: auto;
	margin-top: 0.25rem;
	accent-color: #00e5ff;
}

.apc-form-checkbox label {
	flex: 1;
	font-size: 0.875rem;
	line-height: 1.4;
	margin-bottom: 0;
}

.apc-form-checkbox a {
	color: #00e5ff;
	text-decoration: underline;
}

.apc-form-submit {
	width: 100%;
	background: #00e5ff;
	color: #0a0a0a;
	border: none;
	padding: 1rem;
	border-radius: 6px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.apc-form-submit:hover:not(:disabled) {
	background: #0297ff;
	transform: translateY(-2px);
	box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.apc-form-submit:disabled {
	background: rgba(0, 229, 255, 0.3);
	cursor: not-allowed;
}

.apc-form-error {
	color: #ff5722;
	font-size: 0.875rem;
	margin-top: 0.25rem;
	min-height: 1.2rem;
}

/* Contact Information */
.apc-contact-info {
	background: #0f0f0f;
	padding: 2rem;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
	border: 1px solid rgba(156, 39, 176, 0.1);
}

.apc-contact-info h3 {
	color: #9c27b0;
	margin-bottom: 2rem;
}

.apc-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(224, 224, 224, 0.1);
}

.apc-contact-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.apc-contact-item-icon {
	font-size: 1.5rem;
	color: #00e5ff;
	width: 2rem;
	text-align: center;
	margin-top: 0.25rem;
	flex-shrink: 0;
}

.apc-contact-item-content h4 {
	color: #e0e0e0;
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
	font-weight: 600;
}

.apc-contact-item-content p {
	color: #e0e0e0;
	opacity: 0.8;
	margin: 0;
	line-height: 1.5;
}

/* Responsive Design for Contact Page */
@media (max-width: 1024px) {
	.apc-contact-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.apc-contact-form,
	.apc-contact-info {
		padding: 1.5rem;
	}
}

@media (max-width: 768px) {
	.apc-contact-hero {
		padding: 100px 0 60px;
	}

	.apc-contact {
		padding: 60px 0;
	}

	.apc-contact-form,
	.apc-contact-info {
		padding: 1.25rem;
	}

	.apc-form-checkbox {
		align-items: flex-start;
	}

	.apc-contact-item {
		gap: 0.75rem;
		margin-bottom: 1.5rem;
		padding-bottom: 1.5rem;
	}
}

@media (max-width: 480px) {
	.apc-contact-hero h1 {
		font-size: 2.5rem;
	}

	.apc-contact-form,
	.apc-contact-info {
		padding: 1rem;
	}

	.apc-form-group {
		margin-bottom: 1.25rem;
	}

	.apc-contact-item {
		flex-direction: column;
		gap: 0.5rem;
		text-align: center;
	}

	.apc-contact-item-icon {
		font-size: 2rem;
		margin-top: 0;
	}
}

.apc-legal-hero {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #0a0a0a, #0f0f0f);
	text-align: center;
	position: relative;
}

.apc-legal-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.05"><circle cx="50" cy="50" r="2" fill="%2300E5FF"/></svg>')
		repeat;
	z-index: 1;
}

.apc-legal-hero h1 {
	font-size: 3.5rem;
	color: #00e5ff;
	margin-bottom: 1rem;
	position: relative;
	z-index: 2;
}

.apc-legal-hero p {
	font-size: 1.2rem;
	color: #e0e0e0;
	opacity: 0.8;
	position: relative;
	z-index: 2;
}

/* Legal Content */
.apc-legal-content {
	padding: 80px 0;
	background: #0a0a0a;
}

.apc-legal-section {
	margin-bottom: 3rem;
	padding: 2rem;
	background: #0f0f0f;
	border-radius: 8px;
	border: 1px solid rgba(0, 229, 255, 0.1);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
	transition: all 0.3s ease;
}

.apc-legal-section:hover {
	border-color: rgba(0, 229, 255, 0.3);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.apc-legal-section h2 {
	color: #00e5ff;
	font-size: 2rem;
	margin-bottom: 1.5rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid rgba(0, 229, 255, 0.3);
}

.apc-legal-section h3 {
	color: #9c27b0;
	font-size: 1.5rem;
	margin: 2rem 0 1rem 0;
	font-weight: 600;
}

.apc-legal-section h4 {
	color: #e0e0e0;
	font-size: 1.2rem;
	margin: 1.5rem 0 0.75rem 0;
	font-weight: 500;
}

.apc-legal-section p {
	color: #e0e0e0;
	line-height: 1.7;
	margin-bottom: 1.5rem;
	opacity: 0.9;
	word-wrap: break-word;
}

.apc-legal-section ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 1.5rem;
}

.apc-legal-section li {
	color: #e0e0e0;
	margin-bottom: 0.75rem;
	padding-left: 1.5rem;
	position: relative;
	line-height: 1.6;
	opacity: 0.9;
}

.apc-legal-section li::before {
	content: '▶';
	color: #00e5ff;
	font-size: 0.8rem;
	position: absolute;
	left: 0;
	top: 0.1rem;
}

.apc-legal-section li strong {
	color: #9c27b0;
	font-weight: 600;
}

/* Legal Contact Box */
.apc-legal-contact-box {
	background: rgba(0, 229, 255, 0.05);
	border: 1px solid rgba(0, 229, 255, 0.2);
	border-radius: 8px;
	padding: 1.5rem;
	margin: 1.5rem 0;
}

.apc-legal-contact-box h3 {
	color: #00e5ff;
	margin-top: 0;
	margin-bottom: 1rem;
}

.apc-legal-contact-box p {
	margin-bottom: 0.5rem;
	word-wrap: break-word;
}

/* Legal Table */
.apc-legal-table {
	background: #0a0a0a;
	border-radius: 8px;
	overflow: hidden;
	margin: 1.5rem 0;
	border: 1px solid rgba(156, 39, 176, 0.2);
}

.apc-legal-table-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	border-bottom: 1px solid rgba(156, 39, 176, 0.1);
}

.apc-legal-table-row:last-child {
	border-bottom: none;
}

.apc-legal-table-header {
	background: rgba(156, 39, 176, 0.1);
	padding: 1rem;
	font-weight: 600;
	color: #9c27b0;
	border-right: 1px solid rgba(156, 39, 176, 0.2);
}

.apc-legal-table-row > div:not(.apc-legal-table-header) {
	padding: 1rem;
	color: #e0e0e0;
	border-right: 1px solid rgba(156, 39, 176, 0.1);
}

.apc-legal-table-row > div:last-child {
	border-right: none;
}

/* Legal Links */
.apc-legal-section a {
	color: #00e5ff;
	text-decoration: underline;
	transition: all 0.3s ease;
}

.apc-legal-section a:hover {
	color: #0297ff;
	text-decoration: none;
}

.apc-legal-section a[target='_blank']::after {
	content: ' ↗';
	font-size: 0.8rem;
	opacity: 0.7;
}

/* Back to Site Button */
.apc-back-to-site {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: linear-gradient(135deg, #00e5ff, #9c27b0);
	color: #0a0a0a;
	padding: 1rem 2rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	margin-top: 2rem;
}

.apc-back-to-site:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 229, 255, 0.4);
}

.apc-back-to-site::before {
	content: '←';
	font-size: 1.2rem;
}

/* Legal Typography Enhancements */
.apc-legal-section em {
	color: #9c27b0;
	font-style: normal;
	font-weight: 500;
}

.apc-legal-section code {
	background: rgba(0, 229, 255, 0.1);
	color: #00e5ff;
	padding: 0.2rem 0.4rem;
	border-radius: 4px;
	font-family: 'Courier New', monospace;
}

.apc-legal-section blockquote {
	border-left: 3px solid #9c27b0;
	padding-left: 1rem;
	margin: 1.5rem 0;
	font-style: italic;
	opacity: 0.8;
}

/* Legal Responsive Design */
@media (max-width: 1024px) {
	.apc-legal-hero h1 {
		font-size: 3rem;
	}

	.apc-legal-section {
		padding: 1.5rem;
	}

	.apc-legal-table-row {
		grid-template-columns: 1fr;
	}

	.apc-legal-table-header,
	.apc-legal-table-row > div {
		border-right: none;
		border-bottom: 1px solid rgba(156, 39, 176, 0.1);
	}
}

@media (max-width: 768px) {
	.apc-legal-hero {
		padding: 100px 0 60px;
	}

	.apc-legal-hero h1 {
		font-size: 2.5rem;
	}

	.apc-legal-content {
		padding: 60px 0;
	}

	.apc-legal-section {
		margin-bottom: 2rem;
		padding: 1.25rem;
	}

	.apc-legal-section h2 {
		font-size: 1.75rem;
	}

	.apc-legal-section h3 {
		font-size: 1.3rem;
		word-wrap: break-word;
	}

	.apc-legal-contact-box {
		padding: 1rem;
	}
}

@media (max-width: 480px) {
	.apc-legal-hero h1 {
		font-size: 2rem;
	}

	.apc-legal-section {
		padding: 1rem;
	}

	.apc-legal-section h2 {
		font-size: 1.5rem;
	}

	.apc-legal-section li {
		padding-left: 1rem;
	}

	.apc-back-to-site {
		padding: 0.75rem 1.5rem;
		font-size: 0.9rem;
	}
}
