/* ============================================================
   Root Cause Digital Solutions — Pixel-perfect mockup styles
   ============================================================ */
:root {
	--navy: #062B66;
	--navy-2: #0A4EA3;
	--navy-dark: #03152E;

	--teal: #0AA6B5;
	--teal-dark: #078A97;
	--teal-glow: rgba(10, 166, 181, 0.15);

	--white: #ffffff;
	--bg: #F7FAFC;

	--text: #5F6F81;
	--heading: #062B66;

	--border: #E4ECF2;

	--shadow: 0 8px 32px rgba(6, 43, 102, 0.10);
	--shadow-lg: 0 20px 50px rgba(6, 43, 102, 0.16);

	--radius: 8px;

	--header-h: 30px;

	--container: 90%;
}
/* ========== HERO ========== */
.hero {
	position: relative;
	padding-top: var(--header-h);
	background: var(--navy);
	overflow: hidden;
	padding-bottom: 120px;
}

.hero-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 600px 400px at 80% 20%, rgba(0, 212, 212, 0.08) 0%, transparent 70%),
		radial-gradient(ellipse 400px 300px at 10% 80%, rgba(13, 37, 69, 0.9) 0%, transparent 60%),
		linear-gradient(160deg, #0b1f3a 0%, #0d2545 45%, #0b1f3a 100%);
}

.hero-bg::before {
	content: '';
	position: absolute;
	inset: 0;
	opacity: 0.4;
	background-image:
		linear-gradient(rgba(0, 212, 212, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 212, 212, 0.04) 1px, transparent 1px);
	background-size: 50px 50px;
}

.hero-bg::after {
	content: '';
	position: absolute;
	width: 380px;
	height: 380px;
	border: 1px solid rgba(0, 212, 212, 0.1);
	border-radius: 50%;
	top: 5%;
	right: 5%;
	pointer-events: none;
}

.hero-inner {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 30px;
	padding: 60px 0 40px;
padding-bottom:100px;
}

.hero-tag {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--teal);
	margin-bottom: 16px;
}

.hero-title {
	font-size: clamp(32px, 4.2vw, 48px);
	font-weight: 700;
	color: var(--white);
	line-height: 1.15;
	margin-bottom: 20px;
}

.hero-title .highlight { color: var(--teal); }

.hero-text {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.72);
	max-width: 460px;
	margin-bottom: 28px;
	line-height: 1.75;
}
.cta-btn{color:#fff}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }

/* Device mockup */
.hero-media {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.hero-services{
	display:grid;
	grid-template-columns:repeat(3,2fr);
	gap:20px;
	width:100%;
}

.service-box{
	background:rgba(255,255,255,0.08);
	border:1px solid rgba(255,255,255,0.1);
	backdrop-filter:blur(10px);
	padding:28px 20px;
	border-radius:20px;
	text-align:center;
	transition:0.3s ease;
}

.service-box:hover{
	transform:translateY(-6px);
	background:rgba(255,255,255,0.12);
}

.service-icon{
	width:70px;
	height:70px;
	margin:0 auto 18px;
	border-radius:18px;
	background:linear-gradient(135deg,#0E8CA8,#0B1F4D);
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:28px;
	color:#fff;
}

.service-box h4{
	color:#fff;
	font-size:18px;
	font-weight:600;
	margin:0;
}
@media(max-width:991px){

	.hero-inner{
		flex-direction:column;
	}

	.hero-services{
		grid-template-columns:repeat(2,1fr);
		max-width:100%;
		margin-top:40px;
	}
}

@media(max-width:575px){

	.hero-services{
		grid-template-columns:1fr;
	}
}
.device-mockup {
	position: relative;
	width: 100%;
	max-width: 500px;
	height: 360px;
}

.device-laptop {
	position: absolute;
	left: 0;
	top: 10px;
	width: 400px;
	z-index: 2;
}

.device-laptop-bezel {
	background: #1e3354;
	border: 3px solid #2d4a72;
	border-radius: 12px 12px 0 0;
	padding: 10px;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.device-screen {
	background: #0f1f35;
	border-radius: 6px;
	padding: 10px;
	aspect-ratio: 16/10;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.screen-bar {
	height: 10px;
	width: 38%;
	background: rgba(0, 212, 212, 0.35);
	border-radius: 3px;
}

.screen-hero {
	flex: 1;
	min-height: 55px;
	background: linear-gradient(135deg, rgba(0, 212, 212, 0.3), rgba(11, 31, 58, 0.85));
	border-radius: 4px;
}

.screen-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6px;
}

.screen-cards span {
	height: 28px;
	background: rgba(255, 255, 255, 0.07);
	border-radius: 3px;
}

.device-laptop-foot {
	height: 14px;
	margin: 0 50px;
	background: linear-gradient(#3d5a80, #2d4a72);
	border-radius: 0 0 10px 10px;
}

.device-phone {
	position: absolute;
	right: 70px;
	bottom: 40px;
	width: 95px;
	padding: 7px;
	background: #1e3354;
	border: 2px solid #2d4a72;
	border-radius: 16px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
	z-index: 3;
}

.device-phone-bezel { border-radius: 12px; overflow: hidden; }

.device-screen--phone {
	aspect-ratio: 9/16;
	padding: 8px;
	gap: 6px;
}

.device-screen--phone .screen-hero { min-height: 45px; }

.device-plant {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 55px;
	height: 90px;
	z-index: 1;
}

.plant-pot {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 38px;
	height: 30px;
	background: #fff;
	border-radius: 4px 4px 10px 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.plant-leaf {
	position: absolute;
	width: 20px;
	height: 32px;
	background: #3cb878;
	border-radius: 50% 50% 50% 0;
	bottom: 24px;
}

.plant-leaf.l1 { left: 6px; transform: rotate(-28deg); }
.plant-leaf.l2 { left: 16px; height: 38px; transform: rotate(0deg); }
.plant-leaf.l3 { left: 28px; transform: rotate(28deg); }

/* Hero bottom bar */
.hero-bar {
	position: relative;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(0, 0, 0, 0.2);
}

.hero-bar-inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding: 20px 0;
}

.hero-bar-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: rgba(255, 255, 255, 0.92);
	font-size: 13px;
	font-weight: 500;
}

.hero-bar-item i { color: var(--teal); font-size: 16px; }
.cta-btn{color:#fff;}
/* ========== STATS (overlapping card) ========== */
.stats-wrap {
	position: relative;
	margin-top: -70px;
	padding-bottom: 0;
	z-index: 10;
}

.stats-box {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: var(--white);
	border-radius: 12px;
	box-shadow: var(--shadow-lg);
	padding: 35px 20px;
}

.stats-cell {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 8px 24px;
}

.stats-cell:not(:last-child) { border-right: 1px solid var(--border); }

.stats-icon {
	width: 56px;
	height: 56px;
	min-width: 56px;
	border-radius: 50%;
	background: var(--teal-glow);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--teal);
	font-size: 22px;
}

.stats-num {
	font-size: 32px;
	font-weight: 700;
	color: var(--heading);
	line-height: 1;
}

.stats-label {
	font-size: 12px;
	color: var(--text);
	margin-top: 4px;
}

/* ========== SERVICES ========== */
.services {
	background: var(--white);
	padding-top: 50px;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 24px;
}

.svc-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 30px 26px 26px;
	transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.svc-card:hover {
	border-color: var(--teal);
	box-shadow: var(--shadow);
	transform: translateY(-4px);
}

.svc-icon {
	width: 64px;
	height: 64px;
	border-radius: var(--radius);
	background: var(--teal-glow);
	border: 1px solid rgba(0, 212, 212, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	color: var(--teal);
	margin-bottom: 20px;
}

.svc-card h3 {
	font-size: 17px;
	font-weight: 600;
	color: var(--heading);
	margin-bottom: 10px;
}

.svc-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 15px;
	font-weight: 600;
	color: var(--teal);
}

.svc-link:hover { gap: 10px; }

/* ========== ABOUT ========== */
.about { background: var(--bg); }

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

.about-copy p {
	margin-bottom: 16px;
	font-size: 15px;
}

.about-copy .btn { margin-top: 8px; }

.about-frame {
	position: relative;
}
.about-frame::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 55%;
    border-right: 30px solid #0aa6b5db;
    border-bottom: 30px solid #0aa6b5db;
    z-index: 1111;
}
.about-frame img {
	position: relative;
	z-index: 1;
	border-radius: var(--radius);
	width: 100%;
	object-fit: cover;
	box-shadow: var(--shadow-lg);
}

/* ========== WHY CHOOSE (3x2, icon left) ========== */
.why {
	background: var(--navy);
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
}

.why-card {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 28px 24px;
	border-right: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.why-card:nth-child(3n) { border-right: none; }
.why-card:nth-child(n+4) { border-bottom: none; }

.why-card-icon {
	width: 48px;
	height: 48px;
	min-width: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: var(--teal);
}


.why-card-body p {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.65;
}

/* ========== PROCESS ========== */
.process { background: var(--white); }

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

.process-row::before {
	content: '';
	position: absolute;
	top: 36px;
	left: 12%;
	right: 12%;
	height: 0;
	border-top: 2px dashed var(--teal);
	opacity: 0.45;
	z-index: 0;
}

.process-item {
	text-align: center;
	padding: 0 12px;
	position: relative;
	z-index: 1;
}

.process-circle {
	width: 72px;
	height: 72px;
	margin: 0 auto 18px;
	background: var(--teal);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	color: var(--white);
	box-shadow: 0 8px 24px rgba(0, 212, 212, 0.35);
}

.process-item h3 {
	font-size: 17px;
	font-weight: 600;
	color: var(--heading);
	margin-bottom: 8px;
}

.process-item h3 em {
	font-style: normal;
	color: var(--teal);
}

.process-item p {
	font-size: 15px;
	line-height: 1.65;
}

/* ========== PORTFOLIO ========== */
.portfolio { background: var(--bg); }

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

.port-card {
	background: var(--white);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(11, 31, 58, 0.06);
	transition: transform 0.25s, box-shadow 0.25s;
}

.port-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
}

.port-img {
	aspect-ratio: 16/11;
	overflow: hidden;
}

.port-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

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

.port-meta { padding: 18px 20px 22px; }

.port-meta h3 {
	font-size: 17px;
	font-weight: 600;
	color: var(--heading);
	margin-bottom: 4px;
}

.port-meta span {
	font-size: 15px;
	font-weight: 500;
	color: var(--teal);
}

/* ========== TESTIMONIALS ========== */
.testimonials { background: var(--white); }

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

.testi-card {
	position: relative;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px 24px 24px;
	min-height: 240px;
}

.testi-quote {
	font-size: 15px;
	font-style: italic;
	color: var(--text);
	line-height: 1.8;
	margin-bottom: 24px;
	padding-bottom: 70px;
}

.testi-author {
	position: absolute;
	bottom: 24px;
	left: 24px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.testi-author img {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	object-fit: cover;
}

.testi-author strong {
	display: block;
	font-size: 15px;
	color: var(--heading);
}

.testi-author span {
	font-size: 13px;
	color: #8b9cb3;
}

.testi-mark {
	position: absolute;
	bottom: 20px;
	right: 20px;
	font-size: 36px;
	color: var(--teal);
	opacity: 0.35;
}

/* ========== CTA (centered) ========== */
.cta {
	position: relative;
	padding: 80px 0;
	background: var(--navy);
	overflow: hidden;
	text-align: center;
}

.cta-pattern {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle 280px at 85% 50%, rgba(0, 212, 212, 0.12) 0%, transparent 70%),
		radial-gradient(circle 180px at 15% 70%, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
}

.cta-pattern::before {
	content: '';
	position: absolute;
	width: 480px;
	height: 480px;
	border: 1px solid rgba(0, 212, 212, 0.08);
	border-radius: 50%;
	right: -120px;
	top: 50%;
	transform: translateY(-50%);
}

.cta-pattern::after {
	content: '';
	position: absolute;
	width: 320px;
	height: 320px;
	border: 1px solid rgba(0, 212, 212, 0.06);
	border-radius: 50%;
	left: -80px;
	bottom: -100px;
}

.cta-box h2 {
	font-size: clamp(26px, 3.5vw, 36px);
	font-weight: 700;
	color: var(--white);
	margin-bottom: 14px;
	line-height: 1.25;
}

.cta-box p {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.72);
	margin-bottom: 28px;
	line-height: 1.75;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	line-height: 1.7;
	color: var(--text);
	background: var(--white);
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.25s, background 0.25s, transform 0.25s; }
ul { list-style: none; }

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

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 28px;
	font-family: inherit;
	font-size: 16px;
	font-weight: 600;
	border-radius: 6px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: all 0.25s ease;
	white-space: nowrap;
}

.btn-teal, .btn-primary {
	background: var(--teal) !important;
	color: var(--navy) !important;
	border-color: var(--teal) !important;
}

.btn-teal:hover, .btn-primary:hover {
	background: var(--teal-dark);
	border-color: var(--teal-dark);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 212, 212, 0.4);
}

.btn-outline-white {
	background: transparent;
	color: var(--white);
	border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--white);
}

.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-header { padding: 10px 22px; font-size: 13px; }

/* ---------- Section utilities ---------- */
.section { padding: 30px 0; }

.sec-label {
	display: block;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--teal);
	margin-bottom: 12px;
}

.sec-title {
	font-size: clamp(26px, 3vw, 36px);
	font-weight: 700;
	color: var(--heading);
	line-height: 1.28;
}

.sec-sub {
	margin-top: 14px;
	font-size: 17px;
	color: var(--text);
	line-height: 1.75;
	max-width: 640px;
}

.sec-head { margin-bottom: 50px; }
.sec-head--center { text-align: center; }
.sec-head--center .sec-sub { margin-left: auto; margin-right: auto; }
.sec-head--light .sec-title { color: var(--white); }
.sec-head--row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 600;
	color: var(--teal);
	white-space: nowrap;
}

.link-arrow:hover { gap: 12px; }

/* ========== HEADER ========== */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: var(--header-h);
	background: var(--navy);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header.scrolled { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25); }

.header-inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: var(--header-h);
	gap: 16px;
}

.site-logo, .footer-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--white);
}

.logo-icon { border-radius: 50%; flex-shrink: 0; }

.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text strong { font-size: 13px; font-weight: 700; letter-spacing: 0.6px; }
.logo-text small { font-size: 8px; font-weight: 500; letter-spacing: 1.4px; opacity: 0.85; }

.main-nav { justify-self: center; }

.nav-list {
	display: flex;
	align-items: center;
	gap: 30px;
}

.nav-link {
	font-size: 14px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
}

.nav-link:hover, .nav-link.active { color: var(--teal); }

.header-actions {
	justify-self: end;
	display: flex;
	align-items: center;
	gap: 10px;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.nav-toggle span {
	display: block;
	height: 2px;
	background: var(--white);
	border-radius: 2px;
	transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== HERO ========== */
.hero {
	position: relative;
	padding-top: var(--header-h);
	background: var(--navy);
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 600px 400px at 80% 20%, rgba(0, 212, 212, 0.08) 0%, transparent 70%),
		radial-gradient(ellipse 400px 300px at 10% 80%, rgba(13, 37, 69, 0.9) 0%, transparent 60%),
		linear-gradient(160deg, #0b1f3a 0%, #0d2545 45%, #0b1f3a 100%);
}

.hero-bg::before {
	content: '';
	position: absolute;
	inset: 0;
	opacity: 0.4;
	background-image:
		linear-gradient(rgba(0, 212, 212, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 212, 212, 0.04) 1px, transparent 1px);
	background-size: 50px 50px;
}

.hero-bg::after {
	content: '';
	position: absolute;
	width: 380px;
	height: 380px;
	border: 1px solid rgba(0, 212, 212, 0.1);
	border-radius: 50%;
	top: 5%;
	right: 5%;
	pointer-events: none;
}



.hero-title {
	font-size: clamp(32px, 4.2vw, 48px);
	font-weight: 700;
	color: #fff !important;
	line-height: 1.15;
	margin-bottom: 20px;
}

.hero-title .highlight { color: var(--teal); }

.hero-text {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.72);
	max-width: 100%;
	margin-bottom: 28px;
	line-height: 1.75;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }

/* Device mockup */
.hero-media {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.device-mockup {
	position: relative;
	width: 100%;
	max-width: 500px;
	height: 360px;
}

.device-laptop {
	position: absolute;
	left: 0;
	top: 10px;
	width: 400px;
	z-index: 2;
}

.device-laptop-bezel {
	background: #1e3354;
	border: 3px solid #2d4a72;
	border-radius: 12px 12px 0 0;
	padding: 10px;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.device-screen {
	background: #0f1f35;
	border-radius: 6px;
	padding: 10px;
	aspect-ratio: 16/10;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.screen-bar {
	height: 10px;
	width: 38%;
	background: rgba(0, 212, 212, 0.35);
	border-radius: 3px;
}

.screen-hero {
	flex: 1;
	min-height: 55px;
	background: linear-gradient(135deg, rgba(0, 212, 212, 0.3), rgba(11, 31, 58, 0.85));
	border-radius: 4px;
}

.screen-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6px;
}

.screen-cards span {
	height: 28px;
	background: rgba(255, 255, 255, 0.07);
	border-radius: 3px;
}

.device-laptop-foot {
	height: 14px;
	margin: 0 50px;
	background: linear-gradient(#3d5a80, #2d4a72);
	border-radius: 0 0 10px 10px;
}

.device-phone {
	position: absolute;
	right: 70px;
	bottom: 40px;
	width: 95px;
	padding: 7px;
	background: #1e3354;
	border: 2px solid #2d4a72;
	border-radius: 16px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
	z-index: 3;
}

.device-phone-bezel { border-radius: 12px; overflow: hidden; }

.device-screen--phone {
	aspect-ratio: 9/16;
	padding: 8px;
	gap: 6px;
}

.device-screen--phone .screen-hero { min-height: 45px; }

.device-plant {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 55px;
	height: 90px;
	z-index: 1;
}

.plant-pot {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 38px;
	height: 30px;
	background: #fff;
	border-radius: 4px 4px 10px 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.plant-leaf {
	position: absolute;
	width: 20px;
	height: 32px;
	background: #3cb878;
	border-radius: 50% 50% 50% 0;
	bottom: 24px;
}

.plant-leaf.l1 { left: 6px; transform: rotate(-28deg); }
.plant-leaf.l2 { left: 16px; height: 38px; transform: rotate(0deg); }
.plant-leaf.l3 { left: 28px; transform: rotate(28deg); }

/* Hero bottom bar */
.hero-bar {
	position: relative;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(0, 0, 0, 0.2);
}

.hero-bar-inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding: 20px 0;
}

.hero-bar-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: rgba(255, 255, 255, 0.92);
	font-size: 13px;
	font-weight: 500;
}

.hero-bar-item i { color: var(--teal); font-size: 16px; }

/* ========== STATS (overlapping card) ========== */
.stats-wrap {
	position: relative;
	margin-top: -70px;
	padding-bottom: 0;
	z-index: 10;
}

.stats-box {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: var(--white);
	border-radius: 12px;
	box-shadow: var(--shadow-lg);
	padding: 28px 16px;
}

.stats-cell {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 8px 24px;
}

.stats-cell:not(:last-child) { border-right: 1px solid var(--border); }

.stats-icon {
	width: 56px;
	height: 56px;
	min-width: 56px;
	border-radius: 50%;
	background: var(--teal-glow);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--teal);
	font-size: 22px;
}

.stats-num {
	font-size: 32px;
	font-weight: 700;
	color: var(--heading);
	line-height: 1;
}

.stats-label {
	font-size: 16px;
	color: var(--text);
	margin-top: 4px;
}

/* ========== SERVICES ========== */
.services {
	background: var(--white);
	padding-top: 50px;
}


.svc-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 30px 26px 26px;
	transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.svc-card:hover {
	border-color: var(--teal);
	box-shadow: var(--shadow);
	transform: translateY(-4px);
}

.svc-icon {
	width: 64px;
	height: 64px;
	border-radius: var(--radius);
	background: var(--teal-glow);
	border: 1px solid rgba(0, 212, 212, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	color: var(--teal);
	margin-bottom: 20px;
}

.svc-card h3 {
	font-size: 17px;
	font-weight: 600;
	color: var(--heading);
	margin-bottom: 10px;
}

.svc-card p {
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 16px;
}

.svc-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
	color: var(--teal);
}

.svc-link:hover { gap: 10px; }

/* ========== ABOUT ========== */
.about { background: var(--bg); }

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

.about-copy p {
	margin-bottom: 16px;
	font-size: 15px;
}

.about-copy .btn { margin-top: 8px; }

.about-frame {
	position: relative;
}



.about-frame img {
	position: relative;
	z-index: 1;
	border-radius: var(--radius);
	width: 100%;
	object-fit: cover;
	box-shadow: var(--shadow-lg);
}

/* ========== WHY CHOOSE (3x2, icon left) ========== */
.why {
	background: var(--navy);
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
}

.why-card {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 28px 24px;
	border-right: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.why-card:nth-child(3n) { border-right: none; }
.why-card:nth-child(n+4) { border-bottom: none; }

.why-card-icon {
	width: 48px;
	height: 48px;
	min-width: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: var(--teal);
}

.why-card-body h3 {
	font-size: 17px;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 6px;
	line-height: 1.35;
}

.why-card-body p {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.65;
}

/* ========== PROCESS ========== */
.process { background: var(--white); }

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

.process-row::before {
	content: '';
	position: absolute;
	top: 36px;
	left: 12%;
	right: 12%;
	height: 0;
	border-top: 2px dashed var(--teal);
	opacity: 0.45;
	z-index: 0;
}

.process-item {
	text-align: center;
	padding: 0 12px;
	position: relative;
	z-index: 1;
}

.process-circle {
	width: 72px;
	height: 72px;
	margin: 0 auto 18px;
	background: var(--teal);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	color: var(--white);
	box-shadow: 0 8px 24px rgba(0, 212, 212, 0.35);
}

.process-item h3 {
	font-size: 17px;
	font-weight: 600;
	color: var(--heading);
	margin-bottom: 8px;
}

.process-item h3 em {
	font-style: normal;
	color: var(--teal);
}

.process-item p {
	font-size: 15px;
	line-height: 1.65;
}

/* ========== PORTFOLIO ========== */
.portfolio { background: var(--bg); }

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

.port-card {
	background: var(--white);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(11, 31, 58, 0.06);
	transition: transform 0.25s, box-shadow 0.25s;
}

.port-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
}

.port-img {
	aspect-ratio: 16/11;
	overflow: hidden;
}

.port-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

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

.port-meta { padding: 18px 20px 22px; }

.port-meta h3 {
	font-size: 17px;
	font-weight: 600;
	color: var(--heading);
	margin-bottom: 4px;
}

.port-meta span {
	font-size: 15px;
	font-weight: 500;
	color: var(--teal);
}

/* ========== TESTIMONIALS ========== */
.testimonials { background: var(--white); }

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

.testi-card {
	position: relative;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px 24px 24px;
	min-height: 240px;
}

.testi-quote {
	font-size: 15px;
	font-style: italic;
	color: var(--text);
	line-height: 1.8;
	margin-bottom: 24px;
	padding-bottom: 70px;
}

.testi-author {
	position: absolute;
	bottom: 24px;
	left: 24px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.testi-author img {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	object-fit: cover;
}

.testi-author strong {
	display: block;
	font-size: 14px;
	color: var(--heading);
}

.testi-author span {
	font-size: 12px;
	color: #8b9cb3;
}

.testi-mark {
	position: absolute;
	bottom: 20px;
	right: 20px;
	font-size: 36px;
	color: var(--teal);
	opacity: 0.35;
}

/* ========== CTA (centered) ========== */
.cta {
	position: relative;
	padding: 30px 0;
	background: var(--navy);
	overflow: hidden;
	text-align: center;
}

.cta-pattern {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle 280px at 85% 50%, rgba(0, 212, 212, 0.12) 0%, transparent 70%),
		radial-gradient(circle 180px at 15% 70%, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
}

.cta-pattern::before {
	content: '';
	position: absolute;
	width: 480px;
	height: 480px;
	border: 1px solid rgba(0, 212, 212, 0.08);
	border-radius: 50%;
	right: -120px;
	top: 50%;
	transform: translateY(-50%);
}

.cta-pattern::after {
	content: '';
	position: absolute;
	width: 320px;
	height: 320px;
	border: 1px solid rgba(0, 212, 212, 0.06);
	border-radius: 50%;
	left: -80px;
	bottom: -100px;
}

.cta-box {
	position: relative;
	margin: 0 auto;
}

.cta-box h2 {
	font-size: clamp(26px, 3.5vw, 36px);
	font-weight: 700;
	color: var(--white);
	margin-bottom: 14px;
	line-height: 1.25;
}

.cta-box p {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.72);
	margin-bottom: 28px;
	line-height: 1.75;
}
/* ========== Animations ========== */
.fade-up {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
	.why-grid { grid-template-columns: repeat(2, 1fr); }
	.why-card { border-right: none; }
	.why-card:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, 0.08); }
	.why-card:nth-child(3n) { border-right: none; }
	.why-card:nth-child(n+4) { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
	.why-card:nth-child(n+5) { border-bottom: none; }
	.footer-cols { grid-template-columns: repeat(3, 1fr); }
	.footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 992px) {
	.header-inner { grid-template-columns: 1fr auto; }

	.main-nav {
		position: fixed;
		top: var(--header-h);
		left: 0;
		right: 0;
		background: var(--navy);
		padding: 16px 20px 24px;
		transform: translateY(-110%);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		box-shadow: var(--shadow-lg);
		grid-column: 1 / -1;
	}

	.main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
	.nav-list { flex-direction: column; align-items: flex-start; gap: 0; }
	.nav-list li { width: 100%; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
	.nav-link { display: block; padding: 14px 0; width: 100%; }
	.nav-toggle { display: flex; }
	.btn-header { display: none; }

	.hero-inner {
		grid-template-columns: 1fr;
		text-align: center;
		padding: 40px 0 30px;
		min-height: auto;
	}

	.hero-text { margin-left: auto; margin-right: auto; }
	.hero-btns { justify-content: center; }
	.hero-media { justify-content: center; order: -1; }
	.device-mockup { margin: 0 auto; max-width: 420px; height: 300px; }
	.device-laptop { width: 320px; }

	.stats-box { grid-template-columns: repeat(2, 1fr); }
	.stats-cell:nth-child(2) { border-right: none; }
	.stats-cell:nth-child(odd) { border-right: 1px solid var(--border); }

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

	.about-row { grid-template-columns: 1fr; }
	.process-row { grid-template-columns: repeat(2, 1fr); }
	.process-row::before { display: none; }
}

@media (max-width: 768px) {
	.section { padding: 64px 0; }
	.stats-wrap { margin-top: -40px; }
	.stats-box { grid-template-columns: 1fr; }
	.stats-cell { border-right: none !important; border-bottom: 1px solid var(--border); padding-bottom: 16px; }
	.stats-cell:last-child { border-bottom: none; }
	.hero-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.services-grid,
	.portfolio-grid,
	.testi-grid,
	.process-row,
	.why-grid { grid-template-columns: 1fr; }
	.why-card { border-right: none !important; border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important; }
	.why-card:last-child { border-bottom: none !important; }
	.footer-cols { grid-template-columns: 1fr; }
	.footer-bar { flex-direction: column; text-align: center; }
	.device-laptop { width: 280px; }
	.device-mockup { height: 260px; }
}

@media (max-width: 480px) {
	.hero-bar-inner { grid-template-columns: 1fr; }
	.hero-btns { flex-direction: column; width: 100%; }
	.hero-btns .btn { width: 100%; }
}

/*About page css*/

/* ============================================================
   About Us — Root Cause Digital Solutions (v2 mockup)
   ============================================================ */

.text-teal { color: var(--teal); }

/* Active nav underline */
.nav-link.active {
	position: relative;
	color: var(--teal);
}

.nav-link.active::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -6px;
	height: 2px;
	background: var(--teal);
	border-radius: 2px;
}

/* ========== Hero ========== */
.ab-hero {
	position: relative;
	background: var(--navy);
	overflow: hidden;
	padding-bottom: 30px;
}

.ab-hero-dots {
	position: absolute;
	inset: 0;
	opacity: 0.35;
	background-image: radial-gradient(circle, rgba(0, 212, 212, 0.45) 1.5px, transparent 1.5px);
	background-size: 28px 28px;
	pointer-events: none;
}

.ab-hero-inner {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 40px;
	min-height: 480px;
	padding: 56px 0 72px;
}

.ab-hero-content .sec-label {
	margin-bottom: 14px;
}

.ab-hero-title {
	font-size: clamp(30px, 3.8vw, 44px);
	font-weight: 700;
	color: var(--white) !important;
	line-height: 1.2;
	margin-bottom: 18px;
}

.ab-hero-text {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.75;
	margin-bottom: 28px;
}

.ab-hero-visual {
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.ab-hero-img-wrap {
	position: relative;
	width: 100%;
	max-width: 90%;
	border-radius: 0 0 0 120px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
	z-index: 1;
}

.ab-hero-img-wrap img {
	width: 100%;
	height: 100%;
	min-height: 340px;
	object-fit: cover;
}

.ab-hero-badge {
	position: absolute;
	left: 25px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: var(--navy-2);
	border: 3px solid var(--teal);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.ab-badge-num {
	font-size: 28px;
	font-weight: 700;
	color: var(--teal);
	line-height: 1;
}

.ab-badge-text {
	font-size: 11px;
	font-weight: 600;
	color: var(--white);
	line-height: 1.3;
	margin-top: 4px;
}

/* ========== Our Story ========== */
.ab-story {
	background: var(--white);
}

.ab-story-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: start;
}

.ab-story-copy p {
	margin-bottom: 16px;
	font-size: 15px;
	line-height: 1.75;
}

.ab-mvv-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.ab-mvv-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 26px 24px;
	transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}

.ab-mvv-card:hover {
	border-color: rgba(0, 212, 212, 0.4);
	box-shadow: var(--shadow);
	transform: translateY(-3px);
}

.ab-mvv-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--teal-glow);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--teal);
	font-size: 20px;
	margin-bottom: 14px;
}

.ab-mvv-card h3 {
	font-size: 16px;
	font-weight: 600;
	color: var(--heading);
	margin-bottom: 8px;
}

.ab-mvv-card p {
	font-size: 15px;
	line-height: 1.65;
	color: var(--text);
}

/* ========== Stats Bar ========== */
.ab-stats-bar {
	background: #eef2f7;
	padding: 36px 0;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.ab-stats-inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.ab-stat {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	text-align: left;
}

.ab-stat-icon {
	width: 52px;
	height: 52px;
	min-width: 52px;
	border-radius: 50%;
	background: var(--teal-glow);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--teal);
	font-size: 22px;
}

.ab-stat-text {
	font-size: 14px;
	color: var(--heading);
	line-height: 1.4;
}

.ab-stat-text strong {
	font-weight: 700;
	color: var(--heading);
}

/* ========== Meet the Team ========== */
.ab-team {
	background: var(--bg);
}

.ab-team-row {
	display: grid;
	grid-template-columns: 0.9fr 1.6fr;
	gap: 40px;
	align-items: start;
}

.ab-team-intro p {
	margin: 16px 0 24px;
	font-size: 15px;
	line-height: 1.75;
	max-width: 340px;
}

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

.team-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: box-shadow 0.25s, transform 0.25s;
}

.team-card:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-5px);
}

.team-photo {
	aspect-ratio: 4/5;
	overflow: hidden;
	background: var(--bg);
}

.team-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

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

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

.team-info h3 {
	font-size: 15px;
	font-weight: 600;
	color: var(--heading);
	margin-bottom: 4px;
}

.team-role {
	font-size: 12px;
	color: var(--text);
	margin-bottom: 12px;
}

.team-social {
	display: flex;
	justify-content: center;
	gap: 10px;
}

.team-social a {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--bg);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	color: #8b9cb3;
	transition: background 0.2s, color 0.2s;
}

.team-social a:hover {
	background: var(--teal);
	color: var(--navy);
}

/* ========== CTA ========== */
.ab-cta {
	position: relative;
	padding: 64px 0;
	background: var(--navy);
	overflow: hidden;
}

.ab-cta-dots {
	position: absolute;
	inset: 0;
	opacity: 0.25;
	background-image: radial-gradient(circle, rgba(0, 212, 212, 0.5) 1.5px, transparent 1.5px);
	background-size: 24px 24px;
	pointer-events: none;
}

.ab-cta-rocket {
	position: absolute;
	right: 8%;
	top: 50%;
	transform: translateY(-50%);
	font-size: 140px;
	color: rgba(0, 212, 212, 0.08);
	pointer-events: none;
}

.ab-cta-inner {
	position: relative;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	align-items: center;
	gap: 40px;
	z-index: 1;
}

.ab-cta-text h2 {
	font-size: clamp(26px, 3.2vw, 38px);
	font-weight: 700;
	color: var(--white);
	line-height: 1.25;
}

.ab-cta-action p {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.7;
	margin-bottom: 20px;
	max-width: 400px;
}

/* ========== Responsive ========== */
@media (max-width: 1200px) {
	.ab-team-row {
		grid-template-columns: 1fr;
	}

	.ab-team-intro {
		max-width: 100%;
	}

	.ab-team-intro p {
		max-width: 560px;
	}

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

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

	.footer-brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 992px) {
	.ab-hero-inner {
		grid-template-columns: 1fr;
		text-align: center;
		padding: 40px 0 56px;
		min-height: auto;
	}

	.ab-hero-text {
		margin-left: auto;
		margin-right: auto;
	}

	.ab-hero-content .btn {
		margin: 0 auto;
	}

	.ab-hero-visual {
		justify-content: center;
		order: -1;
	}

	.ab-hero-badge {
		left: 10px;
	}

	.ab-hero-img-wrap {
		border-radius: 16px;
		max-width: 480px;
	}

	.ab-story-row {
		grid-template-columns: 1fr;
	}

	.ab-stats-inner {
		grid-template-columns: repeat(2, 1fr);
		gap: 28px;
	}

	.ab-cta-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.ab-cta-action p {
		margin-left: auto;
		margin-right: auto;
	}

	.ab-cta-rocket {
		right: -20px;
		font-size: 100px;
		opacity: 0.6;
	}
}

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

	.ab-mvv-grid {
		grid-template-columns: 1fr;
	}

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

	.ab-stat {
		justify-content: flex-start;
		padding: 0 10px;
	}

	.ab-team-grid {
		grid-template-columns: 1fr;
		max-width: 320px;
		margin: 0 auto;
	}

	.ab-hero-badge {
		width: 100px;
		height: 100px;
		left: 0;
	}

	.ab-badge-num {
		font-size: 24px;
	}

	.footer-cols {
		grid-template-columns: 1fr;
	}

	.footer-bar {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.ab-hero-img-wrap img {
		min-height: 260px;
	}

	.ab-hero-badge {
		position: relative;
		left: auto;
		top: auto;
		transform: none;
		margin: -30px auto 16px;
	}
}
/* ============================================================
   Services Page — Root Cause Digital Solutions
   ============================================================ */

.text-teal { color: var(--teal); }

/* Active nav */
.nav-link.active {
	position: relative;
	color: var(--teal);
}

.nav-link.active::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -6px;
	height: 2px;
	background: var(--teal);
	border-radius: 2px;
}

/* Quote button with arrow circle */
.btn-quote {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 22px 12px 24px;
	font-family: inherit;
	font-size: 13px;
	font-weight: 600;
	color: var(--white) !important;
	background: var(--teal);
	border: none;
	border-radius: 50px;
	transition: all 0.25s ease;
}

.btn-quote:hover {
	background: var(--teal-dark);
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 212, 212, 0.4);
}

.btn-quote-icon {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.25);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	flex-shrink: 0;
}

/* ========== Hero ========== */
.svc-hero {
	position: relative;
	padding-top: var(--header-h);
	background: var(--navy);
	overflow: hidden;
	text-align: center;
}

.svc-hero-waves {
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: 1;
}

.svc-hero-waves svg {
	width: 100%;
	height: 100%;
}

.svc-hero-inner {
	position: relative;
	z-index: 1;
	max-width: 780px;
	margin: 0 auto;
	padding: 30px;
}

.svc-hero-label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--teal);
	margin-bottom: 20px;
}

.svc-dash {
	opacity: 0.7;
	margin: 0 4px;
}

.svc-hero-title {
	font-size: clamp(34px, 4.5vw, 52px);
	font-weight: 700;
	color: var(--white) !important;
	line-height: 1.2;
	margin-bottom: 22px;
}

.svc-hero-text {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.85;
	max-width: 680px;
	margin: 0 auto;
}

/* ========== Services Grid ========== */
.svc-main {
	background: var(--bg);
}

.svc-main .sec-head {
	margin-bottom: 48px;
}

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

.svc-page-card {
	position: relative;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 28px 26px 56px;
	min-height: 220px;
	box-shadow: 0 4px 20px rgba(11, 31, 58, 0.06);
	transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.svc-page-card:hover {
	border-color: rgba(0, 212, 212, 0.35);
	box-shadow: var(--shadow);
	transform: translateY(-4px);
}

.svc-page-icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--teal);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: var(--white);
	margin-bottom: 18px;
	box-shadow: 0 6px 16px rgba(0, 212, 212, 0.3);
}

.svc-page-card h3 {
	font-size: 17px;
	font-weight: 600;
	color: var(--heading);
	margin-bottom: 10px;
	line-height: 1.35;
}

.svc-page-card p {
	font-size: 14px;
	line-height: 1.7;
	color: var(--text);
}

.svc-page-arrow {
	position: absolute;
	right: 22px;
	bottom: 22px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--teal-glow);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--teal);
	font-size: 14px;
	transition: background 0.25s, color 0.25s, transform 0.25s;
}

.svc-page-card:hover .svc-page-arrow {
	background: var(--teal);
	color: var(--white);
	transform: translateX(4px);
}

/* ========== CTA Banner ========== */
.svc-cta-wrap {
	background: var(--bg);
	padding-top: 0;
	padding-bottom: 80px;
}

.svc-cta-box {
	position: relative;
	display: flex;
	align-items: center;
	gap: 28px;
	flex-wrap: wrap;
	background: var(--navy);
	border-radius: 16px;
	padding: 40px 44px;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.svc-cta-dots {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 200px;
	background-image: radial-gradient(circle, rgba(0, 212, 212, 0.35) 1.5px, transparent 1.5px);
	background-size: 18px 18px;
	opacity: 0.4;
	pointer-events: none;
}

.svc-cta-icon {
	width: 72px;
	height: 72px;
	min-width: 72px;
	border-radius: 50%;
	border: 2px solid var(--teal);
	background: rgba(0, 212, 212, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	color: var(--teal);
	flex-shrink: 0;
	z-index: 1;
}

.svc-cta-content {
	flex: 1;
	min-width: 240px;
	z-index: 1;
}

.svc-cta-label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--teal);
	margin-bottom: 10px;
}

.svc-cta-content h2 {
	font-size: clamp(22px, 2.8vw, 30px);
	font-weight: 700;
	color: var(--white);
	line-height: 1.3;
	margin-bottom: 10px;
}

.svc-cta-content p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.7;
	max-width: 520px;
}

.svc-cta-box .btn-quote {
	flex-shrink: 0;
	z-index: 1;
	margin-left: auto;
}

/* ========== Features ========== */
.svc-features {
	background: var(--bg);
	padding-top: 0;
	padding-bottom: 90px;
}

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

.svc-feature {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.svc-feature-icon {
	width: 48px;
	height: 48px;
	min-width: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	color: var(--teal);
}

.svc-feature-body h3 {
	font-size: 16px;
	font-weight: 600;
	color: var(--heading);
	margin-bottom: 8px;
	line-height: 1.3;
}

.svc-feature-body p {
	font-size: 13px;
	line-height: 1.65;
	color: var(--text);
}

/* ========== Responsive ========== */
@media (max-width: 1200px) {
	.svc-grid {
		grid-template-columns: repeat(2, 1fr);
	}

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

@media (max-width: 992px) {
	.svc-hero-inner {
		padding: 56px 20px 64px;
	}

	.svc-cta-box {
		flex-direction: column;
		align-items: flex-start;
		padding: 32px 28px;
	}

	.svc-cta-box .btn-quote {
		margin-left: 0;
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.svc-main,
	.svc-cta-wrap,
	.svc-features {
		padding-bottom: 64px;
	}

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

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

	.svc-hero-title {
		font-size: 30px;
	}
}

@media (max-width: 480px) {
	.svc-page-card {
		min-height: auto;
		padding-bottom: 52px;
	}

	.btn-header.btn-quote {
		display: none;
	}
}

/*contact page*/
.rc-contact-form{
    background:#ffffff;
    padding:50px;
    border-radius:20px;
    box-shadow:0 15px 50px rgba(6,43,102,0.08);
    border:1px solid #E4ECF2;
}

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

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

.rc-form-group label{
    font-size:15px;
    color:#062B66;
    margin-bottom:10px;
    font-weight:600;
}

.rc-contact-form input,
.rc-contact-form textarea{
    width:100%;
    border:1px solid #E4ECF2;
    background:#F7FAFC;
    border-radius:12px;
    padding:16px 18px;
    font-size:15px;
    color:#062B66;
    transition:0.3s ease;
}

.rc-contact-form textarea{
    height:180px;
    resize:none;
}

.rc-contact-form input:focus,
.rc-contact-form textarea:focus{
    border-color:#0AA6B5;
    outline:none;
    box-shadow:0 0 0 4px rgba(10,166,181,0.12);
    background:#ffffff;
}

.full-width{
    grid-column:1/-1;
}

.rc-form-btn input{
    background:linear-gradient(135deg,#062B66,#0AA6B5);
    color:#ffffff;
    border:none;
    padding:16px 35px;
    border-radius:12px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s ease;
    width:auto;
}

.rc-form-btn input:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 30px rgba(6,43,102,0.18);
}

@media(max-width:768px){

    .rc-contact-form{
        padding:30px 20px;
    }

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

}

/*services detail page*/
/* ============================================================
   Service Detail Page — Root Cause Digital Solutions
   ============================================================ */

.sd-sec-label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--teal);
	margin-bottom: 12px;
}

/* ========== Hero ========== */
.sd-hero {
	position: relative;
	padding-top: var(--header-h);
	background: #06162e;
	overflow: hidden;
}

.sd-hero-mesh {
	position: absolute;
	right: -80px;
	top: 50%;
	transform: translateY(-50%);
	width: 520px;
	height: 520px;
	border-radius: 50%;
	border: 1px solid rgba(0, 212, 212, 0.12);
	background:
		radial-gradient(circle at center, transparent 35%, rgba(0, 212, 212, 0.04) 36%, transparent 37%),
		repeating-radial-gradient(circle at center, transparent 0, transparent 28px, rgba(0, 212, 212, 0.06) 29px, transparent 30px);
	opacity: 0.9;
	pointer-events: none;
}

.sd-hero-mesh::before {
	content: '';
	position: absolute;
	inset: 40px;
	border-radius: 50%;
	border: 1px solid rgba(0, 212, 212, 0.08);
}

.sd-hero-mesh::after {
	content: '';
	position: absolute;
	inset: 90px;
	border-radius: 50%;
	border: 1px solid rgba(0, 212, 212, 0.06);
}

.sd-hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 40px;
	min-height: 520px;
	padding: 40px 0 80px;
}

.sd-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	margin-bottom: 20px;
}

.sd-breadcrumb a {
	color: rgba(255, 255, 255, 0.7);
}

.sd-breadcrumb a:hover {
	color: var(--teal);
}

.sd-breadcrumb-sep {
	color: rgba(255, 255, 255, 0.4);
	font-size: 11px;
}

.sd-breadcrumb span[aria-current] {
	color: var(--teal);
}

.sd-hero-label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--teal);
	margin-bottom: 16px;
}

.sd-hero-title {
	font-size: clamp(30px, 3.6vw, 44px);
	font-weight: 700;
	color: var(--white) !important;
	line-height: 1.22;
	margin-bottom: 18px;
}

.sd-hero-text {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.8;
	margin-bottom: 22px;
	max-width: 520px;
}

.sd-hero-checks {
	margin-bottom: 28px;
}

.sd-hero-checks li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.92);
	margin-bottom: 10px;
}

.sd-hero-checks i {
	color: var(--teal);
	font-size: 18px;
	flex-shrink: 0;
}

.sd-hero-media {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	position: relative;
	z-index: 2;
	margin-bottom: -60px;
}

.sd-device-mockup {
	max-width: 460px;
	height: 340px;
	margin: 0 auto;
}

.sd-device-mockup .device-laptop {
	width: 360px;
}

.sd-device-mockup .device-phone {
	right: 40px;
	bottom: 30px;
}

/* ========== About Our Service ========== */
.sd-about {
	background: var(--white);
	padding-top: 100px;
}

.sd-pillars {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	margin-top: 10px;
}

.sd-pillar {
	text-align: center;
	padding: 0 12px;
}

.sd-pillar-icon {
	width: 72px;
	height: 72px;
	margin: 0 auto 18px;
	border-radius: 50%;
	border: 2px solid var(--teal);
	background: var(--teal-glow);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	color: var(--teal);
}

.sd-pillar h3 {
	font-size: 16px;
	font-weight: 600;
	color: var(--heading);
	margin-bottom: 10px;
}

.sd-pillar p {
	font-size: 13px;
	line-height: 1.7;
	color: var(--text);
}

/* ========== What We Offer ========== */
.sd-offer {
	background: var(--bg);
}

.sd-offer-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

.sd-offer-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 26px 22px;
	box-shadow: 0 4px 18px rgba(11, 31, 58, 0.05);
	transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.sd-offer-card:hover {
	border-color: rgba(0, 212, 212, 0.35);
	box-shadow: var(--shadow);
	transform: translateY(-4px);
}

.sd-offer-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--teal);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: var(--white);
	margin-bottom: 16px;
}

.sd-offer-card h3 {
	font-size: 15px;
	font-weight: 600;
	color: var(--heading);
	margin-bottom: 8px;
	line-height: 1.35;
}

.sd-offer-card p {
	font-size: 13px;
	line-height: 1.65;
	color: var(--text);
}

/* ========== Process ========== */
.sd-process {
	position: relative;
	background: var(--white);
	overflow: hidden;
}

.sd-process-waves {
	position: absolute;
	inset: 0;
	opacity: 0.35;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200'%3E%3Cpath d='M0 100 Q300 40 600 100 T1200 100' fill='none' stroke='%23e2e8f0' stroke-width='1'/%3E%3Cpath d='M0 130 Q300 70 600 130 T1200 130' fill='none' stroke='%23e2e8f0' stroke-width='1'/%3E%3C/svg%3E");
	background-size: cover;
	background-position: center;
	pointer-events: none;
}

.sd-process-track {
	position: relative;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 16px;
	margin-top: 10px;
}

.sd-process-track::before {
	content: '';
	position: absolute;
	top: 28px;
	left: 8%;
	right: 8%;
	height: 0;
	border-top: 2px dashed var(--teal);
	opacity: 0.4;
	z-index: 0;
}

.sd-process-item {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 0 6px;
}

.sd-process-num {
	width: 56px;
	height: 56px;
	margin: 0 auto 16px;
	border-radius: 50%;
	background: var(--teal);
	color: var(--white);
	font-size: 15px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 20px rgba(0, 212, 212, 0.35);
}

.sd-process-item h3 {
	font-size: 13px;
	font-weight: 600;
	color: var(--heading);
	margin-bottom: 8px;
	line-height: 1.35;
}

.sd-process-item p {
	font-size: 12px;
	line-height: 1.6;
	color: var(--text);
}

/* ========== CTA ========== */
.sd-cta-section {
	background: var(--white);
	padding-top: 0;
}

/* ========== Trust ========== */
.sd-trust {
	background: var(--white);
	padding-top: 0;
}

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

.sd-trust-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.sd-trust-icon {
	width: 52px;
	height: 52px;
	min-width: 52px;
	border-radius: 50%;
	border: 2px solid var(--teal);
	background: var(--teal-glow);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: var(--teal);
}

.sd-trust-body h3 {
	font-size: 15px;
	font-weight: 600;
	color: var(--heading);
	margin-bottom: 6px;
}

.sd-trust-body p {
	font-size: 13px;
	line-height: 1.65;
	color: var(--text);
}
.sd-hero-grid_{padding-top:100px;
    padding-bottom: 100px;
}

/* ========== Responsive ========== */
@media (max-width: 1200px) {
	.sd-pillars {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}

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

	.sd-process-track {
		grid-template-columns: repeat(3, 1fr);
		row-gap: 36px;
	}

	.sd-process-track::before {
		display: none;
	}

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

@media (max-width: 992px) {
	.sd-hero-grid {
		grid-template-columns: 1fr;
		text-align: center;
		min-height: auto;
		padding: 36px 0 100px;
	}

	.sd-breadcrumb {
		justify-content: center;
	}

	.sd-hero-text {
		margin-left: auto;
		margin-right: auto;
	}

	.sd-hero-checks {
		display: inline-block;
		text-align: left;
	}

	.sd-hero-media {
		order: -1;
		margin-bottom: 0;
	}

	.sd-about {
		padding-top: 48px;
	}

	.svc-cta-box.sd-cta-box {
		flex-direction: column;
		align-items: flex-start;
	}

	.svc-cta-box .btn-quote {
		margin-left: 0;
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.sd-pillars,
	.sd-offer-grid,
	.sd-trust-grid {
		grid-template-columns: 1fr;
	}

	.sd-process-track {
		grid-template-columns: 1fr;
		max-width: 320px;
		margin-left: auto;
		margin-right: auto;
	}

	.sd-device-mockup {
		height: 280px;
		max-width: 100%;
	}

	.sd-device-mockup .device-laptop {
		width: 280px;
	}

	.footer-cols {
		grid-template-columns: 1fr;
	}

	.footer-brand {
		grid-column: auto;
	}

	.footer-bar {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.sd-hero-title {
		font-size: 26px;
	}

	.sd-hero-checks li {
		font-size: 13px;
	}
}
