/* ==========================================================================
   Allojo — Design Refresh
   Modernized visual system inspired by conventions used across leading
   custom software development sites (bold hero typography, navy/blue
   palette, card-based service grids, generous whitespace, subtle shadows).
   Loaded after style.css / responsive.css so these rules take priority.
   ========================================================================== */

:root {
	--allojo-navy: #0b1f44;
	--allojo-navy-deep: #071633;
	--allojo-blue: #2f5eff;
	--allojo-blue-dark: #1f42c9;
	--allojo-bg-soft: #f5f7fb;
	--allojo-text: #33415c;
	--allojo-text-soft: #64748b;
	--allojo-border: #e6eaf2;
	--allojo-radius: 16px;
}

body {
	color: var(--allojo-text);
	font-family: 'Poppins', sans-serif;
}

a {
	color: var(--allojo-navy);
}

/* ---------------------------------------------------------------------- */
/* Typography                                                             */
/* ---------------------------------------------------------------------- */

.heading_main h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 34px;
	font-weight: 700;
	letter-spacing: -0.5px;
	text-transform: none;
	color: var(--allojo-navy);
}

.heading_main p.small_tag {
	color: var(--allojo-blue);
	font-size: 13px;
	letter-spacing: 1.5px;
	font-weight: 700;
}

.heading_main p.large {
	color: var(--allojo-text-soft);
	font-size: 18px;
	font-weight: 400;
}

p.section_count {
	color: var(--allojo-border);
	font-weight: 700;
}

.theme_color {
	color: var(--allojo-blue) !important;
}

/* ---------------------------------------------------------------------- */
/* Header / navigation                                                    */
/* ---------------------------------------------------------------------- */

.top-header {
	position: fixed;
	background: rgba(255, 255, 255, 0.97);
	box-shadow: 0 2px 20px rgba(11, 31, 68, 0.08);
	backdrop-filter: saturate(180%) blur(8px);
}

.top-header .navbar .navbar-collapse ul li a {
	color: var(--allojo-navy);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.5px;
}

.top-header .navbar .navbar-collapse ul li a:hover,
.top-header .navbar .navbar-collapse ul li a:focus {
	color: var(--allojo-blue);
}

.top-header .navbar .navbar-collapse ul li a.nav-cta {
	background: var(--allojo-blue);
	color: #fff;
	border-radius: 999px;
	padding: 10px 22px;
}

.top-header .navbar .navbar-collapse ul li a.nav-cta:hover,
.top-header .navbar .navbar-collapse ul li a.nav-cta:focus {
	background: var(--allojo-blue-dark);
	color: #fff;
}

/* header sits fixed from the start now, so give page content room */
body {
	padding-top: 88px;
}

/* ---------------------------------------------------------------------- */
/* Hero / slider                                                          */
/* ---------------------------------------------------------------------- */

.ulockd-home-slider {
	position: relative;
}

/* The pogo-slider plugin hides all slides (opacity: 0) until its JS runs
   and only reveals them via dynamically-added classes/inline styles. That
   makes the hero fragile — if the plugin fails to init for any reason, the
   banner images never appear. We bypass the JS dependency entirely and
   render the first slide as a plain, always-visible hero. */
.pogoSlider {
	height: auto !important;
	padding-bottom: 0 !important;
	min-height: 520px;
	overflow: visible;
}

.pogoSlider-slide {
	position: relative !important;
	opacity: 1 !important;
	filter: none !important;
	width: 100%;
	min-height: 520px;
	display: none;
	background-position: center;
}

.pogoSlider-slide:first-of-type {
	display: flex !important;
	align-items: center;
}

.pogoSlider-slide::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(7, 22, 51, 0.88) 0%, rgba(11, 31, 68, 0.72) 55%, rgba(47, 94, 255, 0.55) 100%);
}

.pogoSlider-slide .container {
	position: relative;
	z-index: 2;
	width: 100%;
}

.slide_text {
	position: relative;
	z-index: 2;
}

.slide_text h3 {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 52px;
	color: #fff;
	letter-spacing: -1px;
}

.slide_text h4 {
	font-weight: 600;
	font-size: 26px;
}

.slide_text h4 .theme_color {
	color: #8fb0ff !important;
}

.slide_text p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 18px;
	max-width: 520px;
}

.contact_bt,
a.contact_bt {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	height: auto;
	line-height: normal;
	background: var(--allojo-blue);
	color: #fff !important;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.4px;
	padding: 14px 32px;
	border-radius: 999px;
	box-shadow: 0 10px 24px rgba(47, 94, 255, 0.35);
}

.contact_bt:hover,
.contact_bt:focus {
	background: var(--allojo-blue-dark);
	color: #fff !important;
	transform: translateY(-1px);
}

.dark_bg .contact_bt {
	background: #fff;
	color: var(--allojo-navy) !important;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.dark_bg .contact_bt:hover {
	background: var(--allojo-bg-soft);
}

.button-theme {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	height: auto;
	line-height: normal;
	border: 2px solid var(--allojo-blue);
	color: var(--allojo-blue) !important;
	font-weight: 600;
	padding: 12px 30px;
	border-radius: 999px;
}

.button-theme:hover {
	background: var(--allojo-blue);
	color: #fff !important;
}

/* ---------------------------------------------------------------------- */
/* Section backgrounds                                                    */
/* ---------------------------------------------------------------------- */

.section.dark_bg {
	background: linear-gradient(135deg, var(--allojo-navy-deep) 0%, var(--allojo-navy) 100%);
}

/* ---------------------------------------------------------------------- */
/* Service cards                                                          */
/* ---------------------------------------------------------------------- */

.service_blog {
	background: #fff;
	border: 1px solid var(--allojo-border);
	border-radius: var(--allojo-radius);
	padding: 36px 28px;
	box-shadow: 0 4px 20px rgba(11, 31, 68, 0.04);
	transition: all 0.25s ease;
	height: 100%;
}

.service_blog:hover,
.service_blog:focus {
	border-color: var(--allojo-blue);
	box-shadow: 0 16px 40px rgba(47, 94, 255, 0.15);
	transform: translateY(-6px);
}

.service_blog .service_icons {
	margin-bottom: 16px;
}

.service_blog h4 {
	color: var(--allojo-navy);
	font-size: 18px;
	font-weight: 700;
	margin-top: 0;
}

.service_blog p {
	color: var(--allojo-text-soft);
	font-size: 14.5px;
}

/* ---------------------------------------------------------------------- */
/* Counters                                                                */
/* ---------------------------------------------------------------------- */

.counter_section .counter {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--allojo-radius);
	padding: 32px 10px;
	text-align: center;
}

.counter_section .count-title {
	color: #fff;
	font-size: 42px;
	font-weight: 700;
}

.counter_section .count-text {
	color: rgba(255, 255, 255, 0.7);
	letter-spacing: 1px;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 600;
}

/* ---------------------------------------------------------------------- */
/* Team                                                                    */
/* ---------------------------------------------------------------------- */

.team_member_img {
	border-radius: var(--allojo-radius);
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(11, 31, 68, 0.08);
}

/* ---------------------------------------------------------------------- */
/* Inner page banner (about / services / contact)                         */
/* ---------------------------------------------------------------------- */

.inner_page_header {
	background: linear-gradient(120deg, var(--allojo-navy-deep) 0%, var(--allojo-navy) 60%, var(--allojo-blue-dark) 100%);
	padding: 70px 0 40px;
	margin-top: 0;
}

.inner_page_header h3 {
	color: #fff;
	font-size: 36px;
	font-weight: 700;
	margin: 0;
}

/* ---------------------------------------------------------------------- */
/* Contact form                                                           */
/* ---------------------------------------------------------------------- */

.contact-block {
	background: #fff;
	border: 1px solid var(--allojo-border);
	border-radius: var(--allojo-radius);
	padding: 32px;
	box-shadow: 0 4px 24px rgba(11, 31, 68, 0.05);
}

.form-control {
	border-radius: 10px;
	border: 1px solid var(--allojo-border);
	padding: 12px 16px;
	height: auto;
}

.form-control:focus {
	border-color: var(--allojo-blue);
	box-shadow: 0 0 0 3px rgba(47, 94, 255, 0.12);
}

.btn-common,
.submit-button .btn-common {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	height: auto;
	line-height: normal;
	background: var(--allojo-blue);
	color: #fff;
	border: none;
	border-radius: 999px;
	padding: 14px 36px;
	font-weight: 600;
	letter-spacing: 0.4px;
}

.btn-common:hover,
.submit-button .btn-common:hover {
	background: var(--allojo-blue-dark);
}

.left-contact .icon-b {
	background: var(--allojo-bg-soft);
	border-radius: 12px;
	color: var(--allojo-blue);
}

/* ---------------------------------------------------------------------- */
/* Footer                                                                  */
/* ---------------------------------------------------------------------- */

.footer-box {
	background: var(--allojo-navy-deep);
}

.footer_bottom {
	background: #050d20;
}

.footer_bottom .crp,
.footer_bottom .bottom_menu a {
	color: rgba(255, 255, 255, 0.55);
}

/* ---------------------------------------------------------------------- */
/* Responsive tweaks                                                      */
/* ---------------------------------------------------------------------- */

@media (max-width: 991px) {
	body {
		padding-top: 74px;
	}

	.slide_text h3 {
		font-size: 36px;
	}

	.heading_main h2 {
		font-size: 26px;
	}

	.inner_page_header {
		padding: 50px 0 30px;
	}
}
