/* ==========================================================================
   Aqsha Tech — public site theme (dark tech / navy + cyan-blue gradient)
   ========================================================================== */

:root {
	--bg: #060a17;
	--bg-alt: #0a0f22;
	--surface: rgba(255, 255, 255, 0.045);
	--surface-strong: rgba(255, 255, 255, 0.07);
	--border: rgba(148, 178, 224, 0.14);
	--primary: #22d3ee;
	--primary-2: #3b82f6;
	--accent: #a78bfa;
	--text: #e7edf7;
	--text-muted: #90a0c2;
	--text-dim: #647294;
	--gradient: linear-gradient(135deg, var(--primary), var(--primary-2));
	--glow: 0 0 50px rgba(34, 211, 238, 0.18);
	--radius: 18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	background: var(--bg);
	color: var(--text);
	font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
	overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-2); }

/* Bootstrap's default .text-muted gray is too low-contrast on our dark background */
.text-muted { color: var(--text-muted) !important; }

::selection { background: var(--primary); color: #04121a; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--primary), var(--primary-2)); border-radius: 10px; }

.bg-radial-grid {
	background-image:
		radial-gradient(circle at 15% 10%, rgba(34, 211, 238, 0.10), transparent 40%),
		radial-gradient(circle at 85% 30%, rgba(59, 130, 246, 0.10), transparent 40%),
		linear-gradient(rgba(148, 178, 224, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(148, 178, 224, 0.05) 1px, transparent 1px);
	background-size: auto, auto, 42px 42px, 42px 42px;
	background-color: var(--bg);
}

.gradient-text {
	background: var(--gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.section { padding: 100px 0; position: relative; }
.section-sm { padding: 60px 0; position: relative; }

.section-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.78rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--primary);
	font-weight: 600;
}
.section-eyebrow::before {
	content: '';
	width: 24px;
	height: 2px;
	background: var(--gradient);
	display: inline-block;
}

.section-title {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 800;
	margin-top: 10px;
	margin-bottom: 14px;
}

.section-subtitle {
	color: var(--text-muted);
	max-width: 640px;
	font-size: 1.02rem;
}

/* ---------------------------------------------------------------------- */
/* Buttons */
/* ---------------------------------------------------------------------- */
.btn-gradient {
	background: var(--gradient);
	border: none;
	color: #041019;
	font-weight: 700;
	padding: 0.75rem 1.6rem;
	border-radius: 50px;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	box-shadow: 0 8px 24px rgba(34, 211, 238, 0.22);
}
.btn-gradient:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(34, 211, 238, 0.32); color: #041019; }

.btn-outline-glow {
	border: 1.5px solid var(--border);
	color: var(--text);
	padding: 0.75rem 1.6rem;
	border-radius: 50px;
	background: var(--surface);
	transition: all 0.25s ease;
}
.btn-outline-glow:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-3px); }

/* ---------------------------------------------------------------------- */
/* Navbar */
/* ---------------------------------------------------------------------- */
.navbar-aqsha {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 1000;
	padding: 16px 0;
	background: rgba(6, 10, 23, 0.55);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid transparent;
	transition: all 0.3s ease;
}
.navbar-aqsha.scrolled {
	background: rgba(6, 10, 23, 0.85);
	border-bottom: 1px solid var(--border);
	padding: 10px 0;
}
.navbar-brand-aqsha {
	font-weight: 800;
	font-size: 1.3rem;
	color: var(--text) !important;
	letter-spacing: 0.5px;
}
.navbar-aqsha .nav-link {
	color: var(--text-muted) !important;
	font-weight: 500;
	margin: 0 4px;
	position: relative;
}
.navbar-aqsha .nav-link.active,
.navbar-aqsha .nav-link:hover { color: var(--text) !important; }
.navbar-aqsha .nav-link.active::after {
	content: '';
	position: absolute;
	bottom: -4px; left: 0;
	width: 100%; height: 2px;
	background: var(--gradient);
	border-radius: 2px;
}

/* ---------------------------------------------------------------------- */
/* Hero */
/* ---------------------------------------------------------------------- */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	padding-top: 100px;
	overflow: hidden;
}
.hero-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(70px);
	opacity: 0.35;
	pointer-events: none;
	will-change: transform;
}
.hero-blob-1 { width: 420px; height: 420px; background: var(--primary); top: -120px; left: -100px; }
.hero-blob-2 { width: 380px; height: 380px; background: var(--accent); bottom: -100px; right: -80px; }
.hero-blob-3 { width: 260px; height: 260px; background: var(--primary-2); top: 40%; right: 10%; }

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 18px;
	border-radius: 50px;
	background: var(--surface);
	border: 1px solid var(--border);
	font-size: 0.85rem;
	color: var(--text-muted);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 10px #4ade80; }

.hero-title {
	font-size: clamp(2.2rem, 5vw, 3.8rem);
	font-weight: 800;
	line-height: 1.15;
	margin: 22px 0 20px;
}
.hero-lede {
	color: var(--text-muted);
	font-size: 1.1rem;
	max-width: 560px;
	margin-bottom: 34px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 40px; margin-top: 56px; flex-wrap: wrap; }
.hero-stat-num { font-size: 2.1rem; font-weight: 800; }
.hero-stat-label { color: var(--text-dim); font-size: 0.85rem; }

.hero-visual {
	position: relative;
	perspective: 1400px;
}
.hero-card-3d {
	background: linear-gradient(160deg, var(--surface-strong), var(--surface));
	border: 1px solid var(--border);
	border-radius: 24px;
	padding: 26px;
	backdrop-filter: blur(10px);
	box-shadow: 0 30px 80px rgba(0,0,0,0.45), var(--glow);
	transform: rotateY(-14deg) rotateX(6deg);
	transition: transform 0.4s ease;
}
.hero-visual:hover .hero-card-3d { transform: rotateY(-6deg) rotateX(2deg); }
.hero-card-3d img { border-radius: 14px; width: 100%; display: block; }
.hero-float-chip {
	position: absolute;
	background: var(--bg-alt);
	border: 1px solid var(--border);
	border-radius: 14px;
	padding: 12px 16px;
	box-shadow: 0 20px 40px rgba(0,0,0,0.4);
	font-size: 0.85rem;
	display: flex;
	align-items: center;
	gap: 10px;
	animation: floaty 4s ease-in-out infinite;
}
.hero-float-chip.chip-1 { top: 10%; left: -8%; animation-delay: 0.3s; }
.hero-float-chip.chip-2 { bottom: 8%; right: -6%; animation-delay: 1s; }

@keyframes floaty {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-14px); }
}

.scroll-cue {
	position: absolute;
	bottom: 30px; left: 50%;
	transform: translateX(-50%);
	color: var(--text-dim);
	font-size: 0.75rem;
	text-align: center;
}
.scroll-cue .bar {
	width: 2px; height: 34px;
	margin: 8px auto 0;
	background: linear-gradient(var(--primary), transparent);
	animation: scrolldown 1.6s ease-in-out infinite;
}
@keyframes scrolldown {
	0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
	50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
	51% { transform-origin: bottom; }
	100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ---------------------------------------------------------------------- */
/* Glass cards / services / skills */
/* ---------------------------------------------------------------------- */
.glass-card {
	background: linear-gradient(160deg, var(--surface-strong), var(--surface));
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 34px 28px;
	height: 100%;
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.glass-card:hover { border-color: rgba(34, 211, 238, 0.4); box-shadow: 0 20px 50px rgba(0,0,0,0.35), var(--glow); }

.service-icon {
	width: 58px; height: 58px;
	border-radius: 16px;
	display: flex; align-items: center; justify-content: center;
	background: var(--gradient);
	font-size: 1.5rem;
	color: #041019;
	margin-bottom: 22px;
}

.skill-pill {
	display: inline-block;
	padding: 8px 18px;
	margin: 5px;
	border-radius: 50px;
	background: var(--surface);
	border: 1px solid var(--border);
	font-size: 0.85rem;
	color: var(--text-muted);
	transition: all 0.25s ease;
}
.skill-pill:hover { color: var(--primary); border-color: var(--primary); transform: translateY(-2px); }

/* ---------------------------------------------------------------------- */
/* Stats counters */
/* ---------------------------------------------------------------------- */
.stat-box { text-align: center; padding: 20px; }
.stat-num { font-size: 2.6rem; font-weight: 800; }
.stat-label { color: var(--text-muted); font-size: 0.9rem; margin-top: 6px; }

/* ---------------------------------------------------------------------- */
/* Portfolio */
/* ---------------------------------------------------------------------- */
.filter-pill {
	border: 1px solid var(--border);
	background: var(--surface);
	color: var(--text-muted);
	padding: 9px 20px;
	border-radius: 50px;
	font-size: 0.88rem;
	margin: 4px;
	display: inline-block;
	transition: all 0.2s ease;
}
.filter-pill.active,
.filter-pill:hover { background: var(--gradient); color: #041019; border-color: transparent; font-weight: 600; }

.portfolio-card {
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--border);
	background: var(--bg-alt);
	height: 100%;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.portfolio-card:hover { box-shadow: 0 30px 60px rgba(0,0,0,0.5), var(--glow); }
.portfolio-thumb { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.portfolio-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-card:hover .portfolio-thumb img { transform: scale(1.08); }
.portfolio-thumb-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(6,10,23,0.92) 100%);
	display: flex; align-items: flex-end;
	opacity: 0; transition: opacity 0.3s ease;
}
.portfolio-card:hover .portfolio-thumb-overlay { opacity: 1; }
.portfolio-body { padding: 22px 24px; }
.portfolio-category {
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--primary);
	font-weight: 700;
}
.portfolio-title { font-size: 1.2rem; font-weight: 700; margin: 8px 0 10px; }
.portfolio-desc { color: var(--text-muted); font-size: 0.92rem; }
.tech-badge {
	display: inline-block;
	font-size: 0.72rem;
	padding: 4px 10px;
	border-radius: 6px;
	background: rgba(34, 211, 238, 0.1);
	color: var(--primary);
	margin: 3px 4px 0 0;
}

.gallery-shot {
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid var(--border);
	cursor: zoom-in;
	display: block;
}
.gallery-shot img { width: 100%; display: block; transition: transform 0.4s ease; }
.gallery-shot:hover img { transform: scale(1.04); }

/* ---------------------------------------------------------------------- */
/* Testimonials */
/* ---------------------------------------------------------------------- */
.testimonial-card {
	background: linear-gradient(160deg, var(--surface-strong), var(--surface));
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 30px;
	height: 100%;
}
.testimonial-stars { color: #fbbf24; letter-spacing: 3px; margin-bottom: 14px; }
.testimonial-avatar {
	width: 46px; height: 46px;
	border-radius: 50%;
	background: var(--gradient);
	display: flex; align-items: center; justify-content: center;
	font-weight: 700; color: #041019;
}

/* ---------------------------------------------------------------------- */
/* CTA band */
/* ---------------------------------------------------------------------- */
.cta-band {
	border-radius: 28px;
	padding: 64px 40px;
	background: linear-gradient(135deg, rgba(34,211,238,0.14), rgba(59,130,246,0.14));
	border: 1px solid var(--border);
	text-align: center;
	position: relative;
	overflow: hidden;
}

/* ---------------------------------------------------------------------- */
/* Forms */
/* ---------------------------------------------------------------------- */
.form-control-aqsha {
	background: var(--surface);
	border: 1px solid var(--border);
	color: var(--text);
	padding: 0.85rem 1.1rem;
	border-radius: 12px;
}
.form-control-aqsha:focus {
	background: var(--surface);
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.15);
	color: var(--text);
}
.form-control-aqsha::placeholder { color: var(--text-dim); }
label.form-label-aqsha { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 6px; font-weight: 600; }

/* honeypot field, hidden from real users */
.hp-field { position: absolute; left: -9999px; top: -9999px; }

/* ---------------------------------------------------------------------- */
/* Footer */
/* ---------------------------------------------------------------------- */
.footer-aqsha {
	background: var(--bg-alt);
	border-top: 1px solid var(--border);
	padding: 60px 0 30px;
	color: var(--text-dim);
}
.footer-aqsha a { color: var(--text-muted); }
.footer-aqsha a:hover { color: var(--primary); }
.social-icon {
	width: 40px; height: 40px;
	border-radius: 50%;
	border: 1px solid var(--border);
	display: inline-flex; align-items: center; justify-content: center;
	color: var(--text-muted);
	margin-right: 8px;
	transition: all 0.2s ease;
}
.social-icon:hover { background: var(--gradient); color: #041019; border-color: transparent; }

/* ---------------------------------------------------------------------- */
/* Floating WhatsApp button */
/* ---------------------------------------------------------------------- */
.whatsapp-float {
	position: fixed;
	bottom: 26px; right: 26px;
	width: 62px; height: 62px;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	display: flex; align-items: center; justify-content: center;
	font-size: 1.7rem;
	box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
	z-index: 999;
	animation: pulse-wa 2.4s infinite;
}
.whatsapp-float:hover { color: #fff; transform: scale(1.06); }
@keyframes pulse-wa {
	0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
	70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
	100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------------------------------------------------------------------- */
/* Misc / page headers / 404 */
/* ---------------------------------------------------------------------- */
.page-header {
	padding: 160px 0 70px;
	position: relative;
}
.breadcrumb-aqsha { color: var(--text-dim); font-size: 0.9rem; }
.breadcrumb-aqsha a { color: var(--text-muted); }

.error-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.error-code {
	font-size: clamp(5rem, 14vw, 9rem);
	font-weight: 800;
	line-height: 1;
}

[data-aos] { opacity: 0; transition-property: opacity, transform; }
[data-aos].aos-animate { opacity: 1; }

@media (max-width: 991px) {
	.hero { min-height: auto; padding: 130px 0 60px; }
	.hero-visual { margin-top: 50px; }
	.hero-card-3d { transform: none; }
	.hero-float-chip { display: none; }
	.section { padding: 70px 0; }
}
