/* NetHub Main Stylesheet */

:root {
    /* Brand Colors */
    --brand-teal: #00828e; /* low contrast change from #008895 */
    --brand-cyan: #79C7D0;
    --brand-navy: #0e2b3c;
    --brand-light-teal: #C5E2E4; 
    
    /* Backgrounds & Text */
    --bg-white: #ffffff;
    --bg-creme: #f9fafb; /* Soft light gray for section alternates */
    --text-main: #0e2b3c;
    --text-muted: #475467;
    --brand-border-color: #EAECF0;
    
    /* Typography */
    --font-main: 'Montserrat', sans-serif;
    
    /* Gradients */
    --nethub-gradient: linear-gradient(90deg, 
        var(--brand-teal) 0%, 
        var(--brand-teal) 40%, 
        #79C7D0 100%);
}

/* --- TYPOGRAPHY --- */

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    line-height: 1.2;
    margin-top: 0;
    color: var(--text-main);
}

h1, .h1 { font-size: clamp(42px, 4vw + 1rem, 62px); font-weight: 800; letter-spacing: -0.02em; }
h2, .h2 { font-size: clamp(32px, 2vw + 1rem, 40px); font-weight: 800; letter-spacing: -0.02em; }
h3, .h3 { font-size: clamp(22px, 1.5vw + 1rem, 30px); font-weight: 800; letter-spacing: -0.01em; }
h4, .h4 { font-size: clamp(18px, 1vw + 0.5rem, 24px); font-weight: 800; }
h5, .h5 { font-size: clamp(16px, 0.5vw + 0.5rem, 18px); font-weight: 700; }

/* The "Eyebrow" or Category text */
h6, .h6 { 
    font-size: 14px;
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 0.15em;
    color: var(--brand-teal);
}

body {
    font-family: var(--font-main);
    font-size: 18px;
    line-height: 1.65;
    color: var(--text-main);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

p { 
	line-height: 1.6em;
	margin-bottom: 20px; 
	/* color: var(--text-muted);  */
}

p strong {
	color: #0e2b3c;
}

p strong a {
	color: var(--brand-teal);
	transition: color 0.3s ease;
}

p strong a:hover {
	color: var(--text-muted);
}

.elementor-widget-text-editor p:last-child {
	margin-bottom: 0;
}

.color-white {
	color: #fff;
}

/* --- BUTTONS --- */
body input[type="button"], 
body input[type="submit"],
.btn-solid,
.nethub-btn-solid {
    font-family: var(--font-main);
    font-size: 0.8rem;
    font-weight: 600;
	line-height: 1.65;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    background-color: var(--brand-navy);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 14px 42px;
	border: 2px solid transparent;
    border-radius: 100px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

body input[type="button"]:hover, 
body input[type="submit"]:hover,
.btn-solid:hover,
.nethub-btn-solid:hover {
    background-color: var(--brand-teal);
    color: #ffffff;
	transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 251, 255, 0.15);
}

/* --- LINKS & LISTS --- */

a {
    color: var(--brand-teal);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--brand-navy);
}

a:focus, input[type=checkbox]:focus, input[type=file]:focus, input[type=radio]:focus {
	outline: unset;
}

.highlight {
    background: linear-gradient(120deg, var(--brand-teal) 0%, #79C7D0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Custom Teal Bullets */
/* .elementor-widget-text-editor ul { */
    /* padding-left: 20px; */
    /* margin-bottom: 20px; */
/* } */

/* .elementor-widget-text-editor ul li::marker { */
    /* color: var(--brand-teal); */
/* } */

/* .elementor-widget-text-editor ul li { */
    /* margin-bottom: 12px; */
    /* padding-left: 10px; */
/* } */

.elementor-widget-text-editor ul, 
.single .entry-content ul,
.single .project-entry-content ul { 
	list-style: none; 
	margin-bottom: 25px; 
	padding: 0; 
}

.elementor-widget-text-editor ul li, 
.single .entry-content ul li,
.single .project-entry-content ul li {
	position: relative;
	padding-left: 35px;
	margin-bottom: 1rem;
	color: #475467;
	font-weight: 400;
}

.elementor-widget-text-editor ul li::before,
.single .entry-content ul li::before,
.single .project-entry-content ul li::before {
	content: '';
	position: absolute;
	left: 0; top: 8px;
	width: 14px; height: 14px;
	background-color: var(--brand-teal);
	border-radius: 50%;
	box-shadow: 0 0 12px rgba(0, 136, 149, 0.4);
}

.elementor-widget-text-editor ul li strong,
.single .entry-content ul li strong,
.single .project-entry-content ul li strong {
	color: var(--text-main);
}

/* --- FORM ELEMENTS --- */
label {
	margin-bottom: 0;
	color: var(--text-main);
}

body input[type="checkbox"],
body input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: var(--bg-creme);
    border: 1px solid var(--brand-border-color);
    margin: 0 12px 0 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
	flex-shrink: 0;
	outline: unset;
	position: relative;
    transition: all 0.3s ease;
}

body input[type="checkbox"] { border-radius: 6px; }
body input[type="radio"] { border-radius: 50%; }

body input[type="checkbox"]:hover,
body input[type="radio"]:hover {
    border-color: var(--brand-teal);
}

body input[type="checkbox"]:checked,
body input[type="radio"]:checked {
    border-color: var(--brand-teal);
    background: var(--brand-teal);
}

/* Checkmark and Radio Inner Dot */
body input[type="checkbox"]:after {
    content: '';
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.2s ease;
    margin-bottom: 2px;
}

body input[type="radio"]:after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    transform: scale(0);
    transition: transform 0.2s ease;
}

body input[type="checkbox"]:checked:after,
body input[type="radio"]:checked:after {
    transform: rotate(45deg) scale(1); /* checkbox */
}
body input[type="radio"]:checked:after { transform: scale(1); }

/* WordPress search forms */
.search-form {
    display: flex;
    gap: 10px;
}

.search-form input[type="search"] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(122, 57, 196, 0.2);
    border-radius: 12px;
    padding: 12px 20px;
    color: var(--uncan-dark);
    width: 100%;
}

.search-form button[type="submit"] {
    background: var(--uncan-purple);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 0 20px;
    cursor: pointer;
}

.nethub-input, input[type="text"], input[type="email"] {
	width: 100%;
    height: 54px;
    flex-grow: 1;
    padding: 0 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-main);
    background-color: #ffffff;
    border: 1px solid var(--brand-border-color);
    border-radius: 100px;
    outline: none;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.nethub-input::placeholder,
input::placeholder,
textarea::placeholder,
input[type="text"]::placeholder,
input[type="email"]::placeholder {
    color: var(--text-main);
    opacity: 0.7;
}

/* Focus state: Subtle teal glow or border change */
.nethub-input:focus, input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
    border-color: var(--brand-teal);
    box-shadow: 0 20px 40px rgba(0, 136, 149, 0.08);
}

mark, .search-highlight, .lqd-highlight .lqd-highlight-txt {
	background-color: rgba(0, 136, 149, 0.15);
    color: var(--brand-teal);
    padding: 0 2px;
    border-radius: 4px;
    font-weight: 600;
}

/* --- IMAGES --- */
main.content .lqd-imggrp-img-container img,
main.content .lqd-imggrp-img-container .lqd-imggrp-overlay-bg {
    border-radius: 32px;
}

.lqd-imggrp-content-fixed-in {
	writing-mode: initial;
	min-height: auto;
	bottom: 30px;
    right: 30px;
    border-radius: 100px;
}

.lqd-imggrp-content-fixed-in p {
	padding: 10px 20px;
	font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lqd-imggrp-content-fixed .lqd-imggrp-content-inner {
	transform: none;
}

.fancy-image img {
    width: 100%;
    height: auto;
    border-radius: 32px;
    box-shadow: 0 30px 90px rgba(0, 163, 173, 0.12);
    transition: transform 0.4s ease;
}

.fancy-image img:hover {
    transform: scale(1.02);
}

.visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 136, 149, 0.1) 0%, 100%);
}

.visual-tag {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #fff;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- 404 --- */
.page-404 {
    position: relative;
    padding: 100px 0;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #ffffff 0%, #C5E2E4 100%);
    overflow: hidden;
}

/* Question Marks Background Image */
.page-404::before {
    content: "";
    position: absolute;
    top: 130px;
    left: 70%;
    transform: translateX(-50%);
    width: 100%;
    height: 330px;
    background-image: url('/wp-content/uploads/2026/05/image-question-marks.png');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
    z-index: 0;
    opacity: 0.3;
}

.page-404 .container {
    position: relative;
    z-index: 1;
}

.text-404 h1 {
	font-size: 9rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--brand-teal);
    line-height: 1;
}

.text-404 h1 span {
    background: linear-gradient(120deg, var(--brand-teal) 0%, #79C7D0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Text Colors */
.page-404 h3 {
	font-weight: 800 !important;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .text-404 h1 {
        font-size: 6rem;
    }

    .page-404::before {
        height: 170px;
		top: 80px;
		left: 75%;
    }
}

/* --- SCROLLBAR --- */
::selection {
    background-color: rgba(0, 136, 149, 0.25);
    color: #0e2b3c;
}

::-moz-selection {
    background-color: rgba(0, 136, 149, 0.25);
    color: #0e2b3c;
}

html {
    overflow-y: auto;
    scrollbar-width: thin;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background-color: transparent; 
}

::-webkit-scrollbar-thumb {
    background-color: #D1D1D1;
    border-radius: 10px;
    border: 1px solid transparent; 
}

::-webkit-scrollbar-thumb:hover {
    background-color: #A9A9A9; 
}

.nethub-scroll-container {
    overflow: auto;
}

/* --- SECTIONS --- */
section.elementor-top-section > .elementor-container, .container.titlebar-container {
    padding: 0 8%;
    width: 100%;
    max-width: 1900px;
}

section.elementor-top-section.full-width > .elementor-container, .full-width .container.titlebar-container {
	padding: 0;
	max-width: 100%;
}

.page:not(.home) .nethub-contents-wrap section.elementor-top-section:not(.normal-pad):nth-of-type(2) {
	padding-top: 0;
}

/* --- CONTAINERS --- */
section.e-parent {
    padding-top: 110px;
    padding-bottom: 110px;
	width: 100%;
}

.e-parent.section-no-pad,
.e-parent.no-pad {
	padding: 0;
}

.e-parent.no-pad-top {
	padding-top: 0;
}

section.e-parent > .e-con-inner {
    max-width: 1900px;
    padding-left: 8%; 
    padding-right: 8%;
	margin: 0 auto;
}

/* --- HEADER --- */
header.main-header {
	position: fixed !important;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
}

body.admin-bar header.main-header {
	top: 32px !important;
}

header .section-header {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 136, 149, 0.08);
	height: 80px;
}

header.main-header .section-header > .elementor-container {
	height: 80px;
}

header.main-header .section-header > .elementor-container {
	padding: 0;
}

header.main-header .main-nav li a {
	cursor: pointer;
	transition: all .3s ease;
}

header.main-header .main-nav li.megamenu > .nav-item-children {
	width: 100vw;
	left: 0 !important;
	right: 0 !important;
}

header.main-header .lqd-megamenu-slide-arrow {
	left: -6px;
}

/* --- SECTION EFFECTS --- */
.teal-mask-overlay {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.e-parent.teal-mask-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--brand-teal);
    opacity: 0.07;
    z-index: 0;
    pointer-events: none;
}

.e-parent.teal-mask-overlay > .e-con-inner {
    position: relative;
    z-index: 2; 
}

.elementor-section.teal-mask-overlay .elementor-background-overlay {
    filter: grayscale(100%) brightness(0.9);
    z-index: 0 !important;
}

.elementor-section.teal-mask-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--brand-teal);
    opacity: 0.07;
    z-index: 1;
    pointer-events: none;
}

.elementor-section.teal-mask-overlay > .elementor-container,
.elementor-section.teal-mask-overlay > .elementor-column-gap-default {
    position: relative;
    z-index: 2;
}

.elementor-section.top-teal-mask-overlay .elementor-background-overlay {
    top: 100px;
    height: calc(100% - 100px);
}

.elementor-section.top-teal-mask-overlay .elementor-background-overlay,
.elementor-section.top-teal-mask-overlay {
    -webkit-mask-image: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0,0,0,0) 50px,
        black 25%
    );
    mask-image: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0,0,0,0) 50px, 
        black 25%
    );
}

.elementor-section.top-teal-mask-overlay {
    background-color: #FFFFFF;
}

.elementor-section.top-teal-mask-overlay .elementor-container {
    z-index: 2;
    position: relative;
    -webkit-mask-image: none !important;
    mask-image: none !important;
}

/* 1. Target the Container Background and Overlay Layers */
section.e-parent.top-teal-mask-overlay,
section.e-parent.top-teal-mask-overlay::before {
    -webkit-mask-image: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0,0,0,0) 50px, 
        black 25%
    );
    mask-image: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0,0,0,0) 50px, 
        black 25%
    );
}

section.e-parent.top-teal-mask-overlay::before {
    top: 110px !important;
    height: calc(100% - 110px) !important;
}


/* 2. Base Container Setup */
section.e-parent.top-teal-mask-overlay {
    background-color: #FFFFFF;
    position: relative;
}

/* 3. Ensure Content is above the mask and NOT hidden */
section.e-parent.top-teal-mask-overlay > * {
    z-index: 2;
    position: relative;
    -webkit-mask-image: none !important;
    mask-image: none !important;
}

/* Base Glow Logic */
.nethub-glow-left::after,
.nethub-glow-right::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 136, 149, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

/* Position Left */
.nethub-glow-left::after {
    bottom: 1%;
    left: -10%;
}

/* Position Right */
.nethub-glow-right::after {
    top: 1%;
    right: -10%;
}

.nethub-glow-top::after {
    top: 1%;
	bottom: auto;
}

.nethub-glow-middle::after {
    top: 35%;
	bottom: auto;
}

.nethub-glow-bottom::after {
    top: auto;
	bottom: 5%;
}

.nethub-glow-left, .nethub-glow-right {
    position: relative !important;
    overflow: visible !important; 
}

/* --- CARDS & GRIDS --- */
.nethub-glass-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 40px;
    transition: all 0.3s ease;
}

.nethub-glass-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--brand-teal);
    transform: translateY(-5px);
}

.nethub-card {
    background: white;
    border-radius: 32px;
    border: 1px solid var(--brand-border-color);
    padding: 30px;
    transition: all 0.4s ease;
}

.nethub-card:hover {
    border-color: var(--brand-teal);
    box-shadow: 0 20px 40px rgba(0, 136, 149, 0.08);
    transform: translateY(-10px);
}

.partner-logo-container figure img {
    height: 80px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
	filter: grayscale(95%) brightness(0.5) contrast(1.5);
    opacity: 0.9;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

main.content .partner-logo-container .lqd-imggrp-img-container img {
	border-radius: 0;
}

.partner-logo-container figure:hover img {
	filter: none;
    opacity: 1;
    transform: translateY(-5px);
}

.nethub-container-card {
    position: relative;
    padding: 40px;
    border-radius: 32px;
    background: linear-gradient(135deg, #f0fafa 0%, #ffffff 100%);
	border: 1px solid rgba(0, 136, 149, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    z-index: 1;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.nethub-container-card.card-lg {
	padding: 60px;
	border-radius: 40px;
}

/* .nethub-container-card::before { */
    /* content: ""; */
    /* position: absolute; */
    /* top: 0; left: 0; right: 0; bottom: 0; */
    /* background: linear-gradient(135deg, rgba(240, 250, 250, 1) 0%, rgba(255, 255, 255, 0.9) 100%); */
    /* z-index: -1; */
    /* opacity: 0; */
    /* transition: opacity 0.5s ease; */
/* } */

/* .nethub-container-card:hover::before { */
    /* opacity: 1; */
/* } */

/* Interactive States */
.nethub-container-card:not(.no-hover):hover {
    transform: translateY(-10px);
    border-color: var(--brand-teal);
	box-shadow: 0 50px 100px rgba(0, 136, 149, 0.12);
}

.nethub-container-card .nethub-overline {
    font-size: 11px;
    letter-spacing: 2px;
}

.nethub-container-card .elementor-widget-nethub_overline_text.add-pulse .nethub-overline {
	display: flex;
    align-items: center;
	line-height: normal;
    gap: 12px;
	padding-left: 4px;
}

.nethub-container-card .elementor-widget-nethub_overline_text.add-pulse .nethub-overline::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--brand-teal);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.nethub-container-card h3.elementor-heading-title { 
	font-size: 1.4rem;
    font-weight: 800;
    color: #0e2b3c;
    line-height: 1.2;
	margin-bottom: 15px;
}

/* VARIATION: Accent (Solid Teal for High Impact) */
.nethub-container-card.is-accent {
    background: linear-gradient(135deg, var(--brand-teal) 0%, #005f69 100%);
    border: none;
}

.nethub-container-card.is-accent:not(.no-hover):hover {
    box-shadow: 0 30px 60px rgba(0, 95, 105, 0.3);
}

.nethub-container-card.is-accent .nethub-overline {
    color: rgba(255, 255, 255, 0.7);
}

.nethub-container-card.is-accent .elementor-heading-title {
	color: #ffffff;
}

.nethub-container-card.is-accent .elementor-widget-text-editor * {
    color: rgba(255, 255, 255, 0.85);
}

.nethub-icon-box .elementor-widget-container {
	transition: all 0.4s ease;
}
.nethub-icon-box:hover .elementor-widget-container {
	transform: translateY(-10px);
    border-color: var(--brand-teal);
	box-shadow: 0 50px 100px rgba(0, 136, 149, 0.12);
}

main.content .nethub-container-card .elementor-widget-ld_fancy_image img {
	border-radius: 0;
}

/* --- PAGE HERO ---*/
.section-hero {
    position: relative;
    overflow: hidden;
    background-color: #ffffff !important;
    min-height: 400px;
}

.elementor-section.section-hero .elementor-background-overlay {
    background:
        linear-gradient(90deg, 
            rgba(255,255,255,1) 0%, 
            rgba(255,255,255,1) 35%, 
            rgba(255,255,255,0.8) 50%, 
            rgba(255,255,255,0) 100%),
        linear-gradient(0deg, 
            rgba(255,255,255,1) 0%, 
            rgba(255,255,255,0) 30%) !important;
    opacity: 1 !important;
    transition: background 0.3s, opacity 0.3s;
}

.elementor-section.section-hero::before {
    content: "";
    position: absolute;
    bottom: 1%;
    left: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 251, 255, 0.12) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
}

.elementor-section.section-hero .elementor-container {
    position: relative;
    z-index: 2;
}

.e-parent.section-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, 
            rgba(255,255,255,1) 0%, 
            rgba(255,255,255,1) 35%, 
            rgba(255,255,255,0.8) 50%, 
            rgba(255,255,255,0) 100%),
        linear-gradient(0deg, 
            rgba(255,255,255,1) 0%, 
            rgba(255,255,255,0) 30%) !important;
    opacity: 1;
    pointer-events: none;
}

.e-parent.section-hero::after {
    content: "";
    position: absolute;
    bottom: 1%;
    left: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 251, 255, 0.12) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

/* 3. THE CONTENT SHIELD */
.e-parent.section-hero > .e-con-inner {
    position: relative;
    z-index: 2;
}

.number-grad-lg .ld-fh-element {
	font-family: Arial, sans-serif;
    font-size: 10rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(180deg, var(--brand-teal) 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.12;
    user-select: none;
    flex-shrink: 0;
}

.number-grad .ld-fh-element,
.number-grad-xl .ld-fh-element {
    font-family: Arial, sans-serif;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(180deg, rgba(0,136,149,0.16) 0%, rgba(255,255,255,0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    opacity: 0.8;
}

.number-grad-xl .ld-fh-element {
	font-size: 12vw; 
}

/* Styling for the pills inside containers */
.feature-pill {
    padding: 8px 20px;
    background: #ffffff;
    border: 1px solid var(--brand-border-color);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-pill:hover {
    border-color: var(--brand-cyan);
    color: var(--brand-teal);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 136, 149, 0.05);
}

/* --- EDITORIAL COLS --- */
/* 2. Column Base Style */
.elementor-element .nethub-editorial-col {
    position: relative;
    transition: all 0.5s ease;
    cursor: default;
}

/* 3. Vertical Faded Dividers */
.elementor-element .nethub-editorial-col:not(.no-border)::after {
    content: "";
    position: absolute;
    top: 20%;
    right: -50px;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(0, 136, 149, 0.2), transparent);
}

/* 4. HOVER ANIMATIONS */

/* A. Background Glow */
.nethub-editorial-col:hover {
    background: radial-gradient(circle at center, rgba(0, 251, 255, 0.05) 0%, transparent 70%);
}

/* B. The Number (/ 01) Lighting Up */
.nethub-editorial-col .nethub-editorial-number .ld-fh-element {
    font-family: Arial, sans-serif;
    font-weight: 900;
    color: var(--brand-teal);
    font-size: 1.2rem;
    margin-bottom: 30px;
    display: block;
    opacity: 0.4;
	transition: opacity 0.3s ease;
}

.nethub-editorial-col:hover .nethub-editorial-number .ld-fh-element {
    opacity: 1;
}

.nethub-editorial-col .elementor-icon i, 
.nethub-editorial-col .elementor-icon svg {
    color: var(--text-main);
    fill: var(--text-main);
    margin-bottom: 30px;
    display: block;
	transition: fill 0.4s ease;
}

.nethub-editorial-col:hover .elementor-icon i, 
.nethub-editorial-col:hover .elementor-icon svg {
    color: var(--brand-teal);
    fill: var(--brand-teal);
}

.nethub-editorial-col .ld-fancy-heading h3 {
	font-size: 1.4rem;
    font-weight: 800;
    color: #0e2b3c;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

.nethub-editorial-col:hover .ld-fancy-heading h3 {
    color: var(--brand-teal);
    transition: color 0.4s ease;
}

/* Styling the Icon into a Premium Play Button */
.nethub-play-wrapper .btn:hover {
	transform: unset;
}

.nethub-play-wrapper .btn-icon {
    width: 120px;
    height: 120px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); */
}

/* Hover State */
.nethub-play-wrapper:hover .btn-icon {
    background: var(--brand-teal);
    border-color: var(--brand-teal);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 136, 149, 0.4);
}

/* Modal */
body .lqd-lity {
    transition: opacity 0.4s ease-out;
}
body .lqd-lity .lqd-lity-backdrop {
    background-color: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px); /* Safari support */
}

body .lqd-lity .lqd-lity-container {
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    border: none !important;
}

body .lqd-lity .lqd-lity-close-btn-wrap {
	top: 50px;
}

body .lqd-lity .lqd-lity-close {
    color: #ffffff !important;
    background: rgba(15, 23, 42, 0.8) !important;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.8;
}

body .lqd-lity .lqd-lity-close:hover {
    background: #009999 !important;
    transform: scale(1.1);
    opacity: 1;
}

body .lqd-lity .lqd-lity-close svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
}

/* --- FOOTER --- */
.footer {
	background-color: var(--brand-navy);
	overflow: hidden;
}

.footer .footer-logo img {
    filter: brightness(0) invert(1);
    opacity: 0.7;
	transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer .footer-logo figure:hover img {
	opacity: 1;
}

.footer .elementor-social-icon svg {
	transition: fill 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --MOBILE-- */
body .lqd-mobile-sec .navbar-header {
    background-color: rgba(15, 23, 42, 0.85);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 136, 149, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	height: 70px;
}

[data-mobile-nav-style=classic] .lqd-mobile-sec .navbar-collapse {
    position: relative;
    background-image: 
        radial-gradient(circle at bottom right, rgba(0, 251, 255, 0.2), transparent 46%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.85) 0%, rgba(10, 15, 28, 1) 100%) !important;
    background-attachment: scroll; 
    background-size: cover;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 0px 0px 25px 25px;
    border: 1px solid rgba(0, 136, 149, 0.15);
    border-top: none;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    padding-left: 20px;
    padding-right: 20px;
    overflow-y: auto;
    transform: translateZ(0);
}

body .lqd-mobile-sec .navbar-collapse::-webkit-scrollbar {
    display: none;
}

/* Ensure the nav list stays above the glow */
[data-mobile-nav-style=classic] .lqd-mobile-sec #mobile-primary-nav {
    position: relative;
    z-index: 1;
}

body .lqd-mobile-sec .navbar-brand {
	padding: 15px 0; 
}
body .lqd-mobile-sec .navbar-brand img {
	filter: brightness(0) invert(1);
    opacity: 0.8;
}

body .lqd-mobile-sec #mobile-primary-nav > li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

body .lqd-mobile-sec #mobile-primary-nav > li > a {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
    padding: 22px 0;
    transition: all 0.3s ease;
}

body .lqd-mobile-sec .navbar-collapse .nav-item-children {
    background-color: rgba(0, 136, 149, 0.15);
    border: 1px solid rgba(0, 251, 255, 0.1);
    border-radius: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
	margin-bottom: 20px;
}

body .lqd-mobile-sec #mobile-primary-nav .nav-item-children li a {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 500;
	letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.6);
    padding: 14px 20px;
    transition: color 0.3s ease;
}

body .lqd-mobile-sec .navbar-collapse .submenu-expander {
    background-color: rgba(0, 136, 149, 0.15);
    border: 1px solid rgba(0, 251, 255, 0.1);
    border-radius: 10px;
    width: 32px;
    height: 32px;
    top: 17px !important;
	right: 0;
}

body .lqd-mobile-sec .navbar-collapse .submenu-expander svg {
    fill: #049ba9; 
    color: #049ba9;
}

body .lqd-mobile-sec #mobile-primary-nav li.current-menu-item > a,
body .lqd-mobile-sec #mobile-primary-nav li.is-active > a {
    color: #049ba9;
}

body .lqd-mobile-sec #mobile-primary-nav .nav-item-children li a:hover {
    color: #ffffff;
}

/* 6. MOBILE TRIGGER (Hamburger Icon) */
.nav-trigger.style-mobile .bar {
    background-color: rgba(255, 255, 255, .7);
    height: 2px;
    border-radius: 2px;
}

/* 7. SCROLLBAR & OVERFLOW CLEANUP */
body .lqd-mobile-sec .navbar-collapse {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body .lqd-mobile-sec .navbar-collapse::-webkit-scrollbar {
    display: none;
}

body .lqd-mobile-sec #mobile-primary-nav > li:last-child > a {
    margin: 22px 0;
    background: var(--brand-teal);
    color: white;
    text-align: center;
    border-radius: 100px;
	padding: 14px 42px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(0, 136, 149, 0.2);
	justify-content: center;
}

body .lqd-mobile-sec #mobile-primary-nav > li.menu-item-has-children {
    position: relative;
}

body .lqd-mobile-sec #mobile-primary-nav > li.menu-item-has-children > a[href="#"],
body .lqd-mobile-sec #mobile-primary-nav > li.menu-item-has-children > a[href=""] {
    pointer-events: none;
}

body .lqd-mobile-sec #mobile-primary-nav > li.menu-item-has-children > .submenu-expander {
    position: absolute;
    top: 17px !important;
    left: 0;
    width: 100%;
    background-color: transparent !important;
    border: none !important;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 7px;
}

body .lqd-mobile-sec #mobile-primary-nav > li.menu-item-has-children > .submenu-expander::after {
    content: '';
    position: absolute;
    right: 0;
    width: 32px;
    height: 32px;
    background-color: rgba(0, 136, 149, 0.15);
    border: 1px solid rgba(0, 251, 255, 0.1);
    border-radius: 10px;
    z-index: -1;
}

.video-wrapper {
    position: relative;
    cursor: pointer;
    display: block;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    line-height: 0;
    background: #000;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    transition: all 0.4s ease;
    pointer-events: auto;
}

.play-button-container {
    width: 64px;
    height: 64px;
    background: rgba(0, 153, 153, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.play-button-container svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
    margin-left: 4px;
}

.video-wrapper:hover .play-button-container {
    transform: scale(1.08);
    background: rgba(0, 153, 153, 0.8);
}

.video-wrapper.is-playing .play-overlay {
    opacity: 0;
    visibility: hidden;
	pointer-events: none;
}

video {
    width: 100%;
    height: auto;
    display: block;
    outline: none;
}

.lqd-back-to-top {
    bottom: 30px;
    right: 30px;
}

.lqd-back-to-top a {
	background-color: rgba(255, 255, 255, 0.8);
	font-size: 12px;
	box-shadow: 0 0 30px -2px rgba(0, 136, 149, .2);
}

.lqd-back-to-top a:hover {
    box-shadow: 0 0 40px rgba(0, 136, 149, .3);
}

/* --- ANIMATIONS ---*/
@keyframes pulse {
	0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 136, 149, 0.7); }
	70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 136, 149, 0); }
	100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 136, 149, 0); }
}
		
/* --- RESPONSIVE --- */
@media (min-width: 1025px) { 
	body .hide-lg {
		display: none !important; 
	}
}
	
@media (min-width: 1025px) and (max-width: 1599px) {
	
	.elementor-kit-6 {
        font-size: 17px;
    }
	
	section.e-parent {
		padding-top: 80px;
		padding-bottom: 80px; 
	}
	
    section.elementor-top-section > .elementor-container, .container.titlebar-container {
        padding: 0 6%;
    }
	
	section.e-parent > .e-con-inner {
        padding-left: 6%;
        padding-right: 6%;
    }
	
	.nethub-container-card.card-lg {
		padding: 40px;
		border-radius: 32px;
	}
	
	.elementor-12 .elementor-element.elementor-element-c25e13d .nethub-img-accordion {
		--nethub-accordion-height: 400px;
	}
}

@media (min-width: 1025px) and (max-width: 1299px) {
	/* header fix */
	body .elementor-35 .elementor-element.elementor-element-9e4c958, body .section-header {
		padding: 0px 20px;
	}
	
	body .elementor-35 .elementor-element.elementor-element-652bec2 {
        width: 15%;
    }
	
	body .elementor-35 .elementor-element.elementor-element-0a944e4 {
        width: 85%;
    }
	
	body .elementor-35 .elementor-element.elementor-element-24211d1 .main-nav > li > a,
	body .section-header .main-nav > li > a	{
		padding: 12px;
    }
	
	.footer .elementor-element.elementor-element-f25575a {
		width: 27%;
    }
	
	.footer .elementor-39 .elementor-element.elementor-element-9916440 {
        --width: 55%;
    }
}

@media (max-width: 1199px) { 
    body .partner-logo-container.e-con {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 60px;
        overflow-x: auto;
        overflow-y: visible;
        scroll-padding-left: 20px;
        padding-left: 20px;
        padding-right: 20px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none; 
        clip-path: inset(0 -100% 0 -100%);
    }

    body .partner-logo-container.e-con > .elementor-element:first-child {
        margin-left: 0; 
    }

    body .partner-logo-container .elementor-element.elementor-widget {
        flex: 0 0 80px;
        scroll-snap-align: start;
        display: flex;
        align-items: center;
    }

    /* Hide scrollbar */
    body .partner-logo-container::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 1024px) {
    section.elementor-top-section > .elementor-container, .container.titlebar-container {
        padding: 0 4%;
    }
	
	section.e-parent {
		padding-top: 90px;
		padding-bottom: 90px;
	}
	
    section.e-parent > .e-con-inner {
        padding-left: 4%;
        padding-right: 4%;
    }
	
	.nethub-editorial-col {
		padding: 30px 0;
	}
	.nethub-editorial-col::after { display: none; }
	
	.teal-mask-overlay {
		-webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
		mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
	}
	
	.nethub-icon-container {
		max-width: 400px;
	}
}

@media (max-width: 767px) {
   section.elementor-top-section > .elementor-container, .container.titlebar-container {
        padding: 0 10px;
    } 
	
	section.e-parent {	
		padding-top: 60px;
		padding-bottom: 60px;
	}
	
    section.e-parent > .e-con-inner {
        padding-left: 20px;
        padding-right: 20px;
    }
	
	.nethub-container-card {
		padding: 30px;
	}
	
	.nethub-container-card.card-lg {
		padding: 30px;
		border-radius: 32px;
	}
	
	.teal-mask-overlay {
		-webkit-mask-image: linear-gradient(to bottom, transparent, black 5%, black 95%, transparent);
		mask-image: linear-gradient(to bottom, transparent, black 5%, black 95%, transparent);
	}
	
	.elementor-section.top-teal-mask-overlay .elementor-background-overlay,
	.elementor-section.top-teal-mask-overlay,
	section.e-parent.top-teal-mask-overlay,
	section.e-parent.top-teal-mask-overlay::before {
		-webkit-mask-image: linear-gradient(to bottom, 
			transparent 0%, 
			rgba(0,0,0,0) 50px,
			black 15%
		);
		mask-image: linear-gradient(to bottom, 
			transparent 0%, 
			rgba(0,0,0,0) 50px, 
			black 15%
		);
	}
	
	.nethub-editorial-col {
		padding: 40px 0;
	}
	
	.nethub-editorial-col:not(.no-border) {
        border-bottom: 1px solid rgba(0, 136, 149, 0.1);
    }
	
	body input[type="button"], 
	body input[type="submit"],
	.btn-solid,
	.nethub-btn-solid {
		padding: 14px 28px;
	}
}

@media (max-width: 480px) {

	.full-width-sm .lqd-imggrp-img-container { 
		width: 100%;
	}
}
