/*
 * NotchTech Solutions — theme overrides
 * Loaded after reak.css / style.css. Retints the donor "Reak" template to a
 * light, blue/white, premium software-agency palette without touching the
 * generated framework CSS.
 */

:root {
	--oit-theme-1: #2563EB;
	--oit-theme-1-dark: #1D4ED8;
	--oit-theme-1-light: #EFF4FF;
	--notch-navy: #0B1220;
	--notch-grey: #F5F7FA;
	--notch-border: #E6E9EF;
}

/* ---------------------------------
   Base polish
--------------------------------- */
body {
	background-color: #ffffff;
}

img {
	max-width: 100%;
	height: auto;
}

/* ---------------------------------
   Sticky white header
--------------------------------- */
.notch-header {
	position: relative;
	z-index: 1000;
}

.notch-header-sticky {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background-color: #ffffff;
	border-bottom: 1px solid var(--notch-border);
	border-radius: 0 0 28px 28px;
	box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
	transition: box-shadow 0.3s ease, padding 0.3s ease;
}

.notch-header-sticky.is-scrolled {
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.notch-header-sticky .oit-header-menu nav > ul > li > a {
	color: #0F172A;
	padding: 30px 0;
	transition: color 0.25s ease;
}

.notch-header-sticky .oit-header-menu nav > ul > li > a:hover {
	color: var(--oit-theme-1);
}

.notch-header-sticky.is-scrolled .oit-header-menu nav > ul > li > a {
	padding: 20px 0;
}

.notch-header-sticky .oit-header-bar span {
	background-color: #0F172A;
}

/* Logo — plain, no wrapper box; just sized to sit comfortably in each context */
.notch-logo {
	display: inline-flex;
	align-items: center;
}

.notch-logo img {
	width: auto !important;
	height: auto;
}

.oit-header-logo .notch-logo img {
	max-height: 58px;
}

.oitoffcanvas__logo .notch-logo img {
	max-height: 64px;
}

.oit-footer-2-widget-logo .notch-logo img {
	max-height: 68px;
}

/* Primary blue CTA button (header + general use) */
.oit-btn-border.btn-primary-bg {
	color: #ffffff;
	border-color: var(--oit-theme-1);
	background-color: var(--oit-theme-1);
}

.oit-btn-border.btn-primary-bg i {
	color: var(--oit-theme-1);
	background-color: #ffffff;
}

.oit-btn-border.btn-primary-bg:hover {
	border-color: var(--oit-theme-1-dark);
	background-color: var(--oit-theme-1-dark);
}

/* ---------------------------------
   Hero
--------------------------------- */
.notch-hero-gradient {
	background:
		radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.35), transparent 42%),
		radial-gradient(circle at 85% 75%, rgba(37, 99, 235, 0.25), transparent 45%),
		linear-gradient(135deg, #0B1220 0%, #101B33 45%, #0F2A6B 100%);
}

.notch-hero-gradient::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0.5;
	background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
	background-size: 44px 44px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 80%);
}

/* ---------------------------------
   Dark contrast sections — replace pure black
--------------------------------- */
[data-bg-color="#0D0D0D"],
.notch-bg-navy {
	background-color: var(--notch-navy) !important;
}

/* ---------------------------------
   Card / hover polish
--------------------------------- */
.notch-hover-lift {
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.notch-hover-lift:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

/* ---------------------------------
   Portfolio grid
--------------------------------- */
.notch-portfolio-filter {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-bottom: 60px;
}

.notch-portfolio-filter button {
	font-size: 15px;
	font-weight: 600;
	padding: 10px 26px;
	border-radius: 40px;
	border: 1px solid var(--notch-border);
	background-color: #ffffff;
	color: #0F172A;
	cursor: pointer;
	transition: all 0.25s ease;
}

.notch-portfolio-filter button:hover {
	border-color: var(--oit-theme-1);
	color: var(--oit-theme-1);
}

.notch-portfolio-filter button.active {
	border-color: var(--oit-theme-1);
	background-color: var(--oit-theme-1);
	color: #ffffff;
}

.notch-portfolio-card {
	position: relative;
	background-color: #ffffff;
	border: 1px solid var(--notch-border);
	border-radius: 18px;
	overflow: hidden;
	margin-bottom: 40px;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.notch-portfolio-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 24px 50px rgba(15, 23, 42, 0.14);
}

.notch-portfolio-thumb {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background-color: var(--notch-grey);
}

.notch-portfolio-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	transition: transform 0.6s ease;
}

.notch-portfolio-card:hover .notch-portfolio-thumb img {
	transform: scale(1.06);
}

.notch-portfolio-thumb .notch-portfolio-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(180deg, rgba(11, 18, 32, 0) 40%, rgba(11, 18, 32, 0.75) 100%);
	opacity: 0;
	transition: opacity 0.35s ease;
}

.notch-portfolio-card:hover .notch-portfolio-overlay {
	opacity: 1;
}

.notch-portfolio-visit {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 22px;
	border-radius: 40px;
	background-color: #ffffff;
	color: #0F172A !important;
	font-weight: 600;
	font-size: 14px;
	transform: translateY(14px);
	transition: transform 0.35s ease;
}

.notch-portfolio-card:hover .notch-portfolio-visit {
	transform: translateY(0);
}

.notch-portfolio-body {
	padding: 26px 26px 28px;
}

.notch-portfolio-category {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--oit-theme-1);
	margin-bottom: 10px;
}

.notch-portfolio-title {
	font-size: 22px;
	font-weight: 700;
	color: #0F172A;
	margin-bottom: 10px;
}

.notch-portfolio-desc {
	font-size: 15px;
	line-height: 1.7;
	color: var(--oit-text-body);
	margin-bottom: 18px;
}

.notch-tech-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

.notch-tech-badges span {
	font-size: 12px;
	font-weight: 600;
	padding: 5px 12px;
	border-radius: 20px;
	background-color: var(--notch-grey);
	color: #334155;
}

.notch-portfolio-private {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 20px;
	background-color: var(--notch-navy);
	color: #ffffff;
}

/* Compact dashboard mockup used inside homepage service panels */
.notch-service-mock {
	width: 380px;
	max-width: 100%;
	aspect-ratio: 430 / 391;
	min-height: 0;
	padding: 22px;
}

.notch-service-mock .notch-dash-stats {
	grid-template-columns: repeat(2, 1fr);
}

.notch-service-mock .notch-dash-chart {
	min-height: 90px;
}

@media (max-width: 767px) {
	.notch-service-mock {
		width: 100%;
	}
}

/* Dashboard mockup preview (custom software cards) */
.notch-dash-mock {
	position: relative;
	display: flex;
	height: 100%;
	min-height: 260px;
	background: linear-gradient(135deg, #0B1220 0%, #14203A 100%);
	padding: 18px;
	gap: 12px;
}

.notch-dash-sidebar {
	width: 62px;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 10px;
	padding: 12px 8px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.notch-dash-sidebar span {
	display: block;
	height: 8px;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.18);
}

.notch-dash-sidebar span:first-child {
	background: var(--oit-theme-1);
}

.notch-dash-main {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.notch-dash-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

.notch-dash-stats div {
	background: rgba(255, 255, 255, 0.07);
	border-radius: 8px;
	padding: 10px 8px;
}

.notch-dash-stats div i {
	display: block;
	width: 60%;
	height: 6px;
	border-radius: 3px;
	background: rgba(255, 255, 255, 0.25);
	margin-bottom: 8px;
}

.notch-dash-stats div b {
	display: block;
	width: 45%;
	height: 10px;
	border-radius: 3px;
	background: var(--oit-theme-1);
}

.notch-dash-chart {
	flex: 1;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.05);
	display: flex;
	align-items: flex-end;
	gap: 6px;
	padding: 14px 12px;
}

.notch-dash-chart i {
	flex: 1;
	border-radius: 3px 3px 0 0;
	background: linear-gradient(180deg, var(--oit-theme-1), rgba(37, 99, 235, 0.25));
}

.notch-dash-table {
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.05);
	padding: 10px 12px;
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.notch-dash-table div {
	height: 7px;
	border-radius: 3px;
	background: rgba(255, 255, 255, 0.14);
}

.notch-dash-table div:nth-child(odd) {
	width: 90%;
}

.notch-dash-table div:nth-child(even) {
	width: 70%;
}

/* ---------------------------------
   Footer — light, to match the logo's dark wordmark
--------------------------------- */
.notch-footer {
	background-color: #ffffff;
	border-top: 1px solid var(--notch-border);
}

.notch-footer .oit-footer-2-widget-title {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #0F172A;
}

.notch-footer .oit-footer-2-widget p.notch-footer-desc,
.notch-footer-desc {
	color: var(--oit-text-body) !important;
	font-size: 15px;
	line-height: 1.8;
}

.notch-footer-list,
.notch-footer-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.notch-footer-list li {
	margin-bottom: 12px;
}

.notch-footer-list a {
	display: inline-block;
	color: var(--oit-text-body);
	font-size: 15px;
	font-weight: 500;
	transition: color 0.25s ease, padding-left 0.25s ease;
}

.notch-footer-list a:hover {
	color: var(--oit-theme-1);
	padding-left: 4px;
}

.notch-footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	color: var(--oit-text-body);
	margin-bottom: 16px;
}

.notch-footer-contact li i {
	color: var(--oit-theme-1);
	margin-top: 4px;
}

.notch-footer-contact li a {
	color: var(--oit-text-body);
	transition: color 0.25s ease;
}

.notch-footer-contact li a:hover {
	color: var(--oit-theme-1);
}

.notch-footer .oit-footer-2-widget-social a {
	background-color: var(--oit-theme-1);
	color: #ffffff;
}

.notch-footer .oit-footer-2-widget-social a:hover {
	background-color: var(--oit-theme-1-dark);
	color: #ffffff;
}

.notch-footer .oit-copyright-2-style {
	border-top: 1px solid var(--notch-border);
}

.notch-footer .oit-copyright-2-style .oit-copyright-left p {
	color: var(--oit-text-body);
}

.notch-footer .oit-copyright-2-style .oit-copyright-right a,
.notch-footer .oit-copyright-2-style .oit-copyright-right span {
	color: var(--oit-text-body);
}

.notch-footer .oit-copyright-2-style .oit-copyright-right a:hover {
	color: var(--oit-theme-1);
}

/* ---------------------------------
   Responsive
--------------------------------- */
@media (max-width: 991px) {
	.oit-header-logo .notch-logo img {
		max-height: 42px;
	}
	.notch-portfolio-body {
		padding: 22px 20px 24px;
	}
}

@media (max-width: 767px) {
	.notch-dash-mock {
		min-height: 220px;
	}
}
