:root {
	--pvolio-blue: #1976D2;
	--pvolio-blue-light: #64B5F6;
	--pvolio-blue-dark: #0D47A1;
	--pvolio-cream: #FEECD8;
	--pvolio-red: #ff3438;
	--pvolio-green: #239B56;
	--pvolio-green-dark: #0d6232;
	--pvolio-yellow: #f8d134;
	--pvolio-navy: #0f172a;
	--pvolio-accent: #6366f1;
	--pvolio-pink: #FF4876;
}

body {
	font-family: 'Inter', sans-serif;
	background-color: #FFFFFF;
	color: var(--pvolio-navy);
	line-height: 1.6;
}

html {
	scroll-behavior: smooth;
}

img {
	max-width: 100%;
	height: auto;
	border: 0;
}


/* Buttons */

.btn{
	border-radius: 12px;
	font-weight: 600;
	border: none;
	transition: 0.3s;
	padding: 14px 32px;
}

.btn-pvolio {
	background: var(--pvolio-blue);
	color: white;
}

.btn-pvolio:hover {
	background: var(--pvolio-blue-dark);
	color: white;
	transform: translateY(-2px);
}

.btn-pvolio:active,
.btn-pvolio.btn:active {
	background: var(--pvolio-blue-dark);
	color: white;
}

.btn-pvolio-green {
	background: var(--pvolio-green);
	color: white;
}

.btn-pvolio-green:hover {
	background: var(--pvolio-green-dark);
	color: white;
}


/* Form Elements */

.form-control {
	/* background: rgba(255, 255, 255, 0.05); */
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 15px;
}

.form-control:focus {
	/* background: rgba(255, 255, 255, 0.1); */
	border-color: var(--pvolio-accent);
	box-shadow: none;
}

/* Intl form input */
.iti {
	width: 100%;
}

.input-group .iti {
	flex: 1 1 auto;
	width: 1%;
}

.iti__flag-container {
	z-index: 4;
	color: #333333;
}

.iti__selected-flag{
	padding-right: 15px;
    padding-left: 15px;
}

.iti__country-list {
	z-index: 5;
}

.iti--allow-dropdown input,
.iti--separate-dial-code input {
	padding-left: 52px;
}



/* Navbar */
.navbar-holder{
    background: #FFF;
	position: fixed;
    z-index: 300;
    width: 100%;
    height: 71px;
}

.navbar {
	background: #FFFFFF;
	backdrop-filter: blur(10px);
	transition: 0.3s;
	z-index: 300;
	position: fixed;
	width: 100%;
}

.navbar-container{
	background: #FFFFFF;
}

.navbar-logo{
	width: 140px;
}

.navbar-toggler {
	width: 36px;
    height: 36px;
    border-radius: 0;
    padding: 5px 5px;
    border: 2px solid #333333;
}

.navbar-toggler .navbar-toggler-icon{
    background-image: url('../images/menu-cancel.png');
	width: 14px;
    height: 14px;
}

.navbar-toggler.collapsed .navbar-toggler-icon{
    background-image: url('../images/menu-burger.png');
}

.navbar-toggler:focus{
	outline: none;
	box-shadow: none;
}

.nav-link {
	font-weight: 500;
	color: var(--pvolio-navy) !important;
}

.navbar-nav .nav-item-button {
	padding-left: 20px ;
	border-bottom: 0;
}

.nav-placeholder{
	height: 71px;
}



/* Hero Section */

.hero{
	background: #00121a;
	background: linear-gradient(139deg, rgba(0, 18, 26, 1) 0%, rgba(15, 46, 89, 1) 56%, rgba(14, 94, 140, 1) 100%);
}

.hero-holder{
    padding: 160px 0 140px;
    background-image: url(../images/hero3443294.png);
    background-size: 500px;
    background-repeat: no-repeat;
    background-position-y: center;
    background-position-x: right;
}


.hero-grid{
	align-items: center;
}

.hero-title{
	margin-bottom: 30px;
}

.hero-para{
	margin-bottom: 40px;
}

.hero h1 {
	font-size: 3.5rem;
	font-weight: 800;
	letter-spacing: -2px;
	line-height: 1.1;
	margin-bottom: 10px;
}

 .hero-title-1 {
	color: #FFFFFF;
}

.hero-title-2 {
    color: var(--pvolio-yellow);
    text-shadow: 2px 2px 4px var(--pvolio-navy);
}

.hero-image{
	display: flex;
	justify-content: end;
	padding-right: 0;
}

.hero-image img{
	max-width: 500px;
}



/* Logo Marquee */
.marquee {
	overflow: hidden;
	white-space: nowrap;
	padding: 40px 0;
	border-top: 1px solid #e2e8f0;
	border-bottom: 1px solid #e2e8f0;
}

.marquee-content {
	display: inline-block;
	animation: scroll 30s linear infinite;
}

.marquee i {
	font-size: 1.5rem;
	margin: 0 40px;
	color: #94a3b8;
	font-style: normal;
	font-weight: 700;
	opacity: 0.6;
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

/* Suite Section */
.suite {
	padding: 100px 0 80px;
}

.sticky-col {
	position: sticky;
	top: 120px;
	height: fit-content;
}

.sticky-col .sticky-title {
	color: var(--pvolio-blue);
}

.suite-features{
	background: #FFFFFF;
    position: relative;
}

.feature-card {
	background: white;
	border: 1px solid #e2e8f0;
	border-radius: 24px;
	padding: 30px 40px;
	margin-bottom: 40px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
	transition: 0.4s;
}

.feature-card:hover {
	border-color: var(--pvolio-blue);
	box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
}

.feature-card .feature-image {
	border-radius: 16px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	width: 500px;
}


.fw-800 { 
	font-weight: 800;
}

/* Outcome Section */

.outcomes{
    background-color: #ffffff;
    padding: 100px 0 20px;
}

.metric-item h2 {
    letter-spacing: -2px;
	color: var(--pvolio-green)
}

.tracking-wider {
    letter-spacing: 0.12rem;
    font-size: 0.75rem;
}


/* Outcome Boxes */

.outcome-box {
    padding: 30px 30px 20px;
    border-radius: 16px;
    transition: background 0.3s ease;
}

.outcome-box:hover {
    background-color: #e3f0fd;
}

.outcome-number {
    font-size: 1.25rem;
    font-weight: 800;
    color: #6366f1;
    background: #eff6ff;
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.outcome-header{
	align-items: center;
}

.outcome-icon{
	width: 60px;
	min-width: 60px;
}


/* Custom separator for metrics */
.border-bottom {
    border-color: #e2e8f0 !important;
}



/* Testimonial */
.testimonial {
    background: var(--pvolio-yellow);
    padding: 40px 0;
}

.quote-icon {
	color: var(--pvolio-pink);
	font-size: 3rem;
}


/* Waitlist */

.waitlist {
	background: #FFFFFF;
	padding: 100px 0;
}

.waitlist-card {
	background: #0f356f;
	color: white;
	border-radius: 32px;
	padding: 60px;
}

.waitlist-card .form-col{
	background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

/* Footer */

footer {
	background: white;
	padding: 80px 0 40px;
	border-top: 1px solid #e2e8f0;
}

footer a{
	color: var(--bs-gray-800);
	transition: 0.3s;
	text-decoration: none;
}

footer a:hover{
	color: var(--pvolio-blue);
	transform: translateY(-2px);
}

/* Form success popup */
.form-popup {
	position: fixed;
	top: 24px;
	right: 24px;
	background: #ffffff;
	color: var(--pvolio-navy);
	border-radius: 14px;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
	padding: 16px 18px;
	display: flex;
	align-items: center;
	gap: 16px;
	min-width: 260px;
	max-width: 360px;
	transform: translateY(-10px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
	z-index: 9999;
}

.form-popup.show {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.form-popup__title {
	display: block;
	font-weight: 700;
}

.form-popup__message {
	font-size: 0.95rem;
	color: #475569;
}

.form-popup__close {
	border: none;
	background: #f1f5f9;
	color: #0f172a;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
}