:root {
	--primary-teal: #3FAFB3;
	--deep-blue: #1E4E5F;
	--gold: #FFC72C;
	--dark-bg: #0E3A4A;
	--text-dark: #10323F;
	--white: #ffffff;
}
body {
	font-family: 'Outfit', sans-serif;
	/* background: var(--dark-bg); */
	/* color: var(--white); */
	color: var(--text-dark);
}
/* HERO BACKGROUND & BLUR EFFECT */
.hero {
	position: relative;
	padding: 80px 20px 120px;
	overflow: hidden;
	/* background: linear-gradient(135deg, var(--deep-blue), var(--primary-teal)); */
}
.hero::before {
	content: "";
	position: absolute;
	inset: -30%;
	/* background:
	radial-gradient(circle at top right, rgba(255,199,44,0.35), transparent 60%),
	radial-gradient(circle at bottom left, rgba(63,175,179,0.45), transparent 60%); */
	filter: blur(60px);
	pointer-events: none; /* <- ADD THIS LINE */
}
/* BADGE */
.badge-custom {
	background: rgba(255,199,44,0.18);
	color: var(--gold);
	padding: 6px 16px;
	border-radius: 999px;
	font-size: 13px;
	display: inline-block;
	margin-bottom: 16px;
}
h1 {
	font-size: 40px;
	line-height: 1.1;
	margin-bottom: 14px;
}
.brand-highlight {
	color: var(--gold);
	font-weight: 800;
}
.hero-sub {
	font-size: 18px;
	opacity: 0.95;
}
.cta-btn-custom {
	background: var(--gold);
	color: var(--text-dark);
	padding: 14px 36px;
	border-radius: 999px;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.hero-stats strong {
	display: block;
	font-size: 22px;
	color: var(--bs-gray-dark);
}
.hero-stats span {
	font-size: 13px;
	opacity: 0.9;
}
.phone-stack {
	position: relative;
	width: 300px;
	margin: auto;
}
.phone {
	width: 100%;
	border-radius: 28px;
}
.phone-back {
	position: absolute;
	top: 18px;
	left: -110px;
	transform: scale(0.8) rotate(-10deg);
	opacity: 0.6;
}
.phone-back2 {
	position: absolute;
	top: 18px;
	left: 110px;
	transform: scale(0.8) rotate(10deg);
	opacity: 0.6;
}
.phone-front {
	transform: rotate(0deg);
}
.fixed-install {
	position: fixed;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--gold);
	color: var(--text-dark);
	padding: 10px 20px;
	border-radius: 999px;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 12px 30px rgba(0,0,0,0.4);
	z-index: 999;
}
.logo-icon {
	animation: shake 1s infinite;
}

@keyframes shake {
	0% { transform: translate(0, 0) rotate(10deg); }
	50% { transform: translate(-2px, -2px) rotate(5deg); }
	100% { transform: translate(0, 0) rotate(10deg); }
}
.tagline h2{font-size: 24px;}

.navbar-collapse.show{
	background: #e9ecef;
	border-radius: 5px;
	margin-top: 5px;
}

@media (max-width: 900px) {

}

/* Transparent Sticky Navbar */
.custom-navbar {
    background: transparent;
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
	width:100%;
}

/* Add blur effect (modern look) */
.custom-navbar.scrolled {
    backdrop-filter: blur(10px);
}

/* Brand Styling */
.navbar-brand {
    font-weight: 700;
    color: var(--text-dark) !important;
    letter-spacing: 1px;
}

/* Nav Links */
.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin-left: 15px;
    position: relative;
    transition: 0.3s ease;
}

/* Gold underline hover effect */
.nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -4px;
    background: var(--gold);
    transition: 0.3s ease;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.nav-link:hover::after {
    width: 100%;
}

/* CTA Button */
.nav-btn {
    background: var(--gold);
    color: var(--deep-blue);
    border-radius: 25px;
    padding: 6px 18px;
    font-weight: 600;
    transition: 0.3s ease;
}

.nav-btn:hover {
    background: var(--primary-teal);
    color: var(--white);
}
/* Dropdown Menu Styling */
.custom-navbar .dropdown-menu {
	background: #f5f7f8;
    border-radius: 10px;
    border: none;
    padding: 10px 0;
    backdrop-filter: blur(10px);
}

/* Dropdown Items */
.custom-navbar .dropdown-item {
    font-weight: 500;
    padding: 8px 20px;
    transition: 0.3s ease;
}

.custom-navbar .dropdown-item:hover {
    background: var(--gold);
    color: var(--deep-blue);
}
.custom-navbar .dropdown-toggle::after {
    display: inline-block;
    border-right: unset;
    border-bottom: 0;
    border-left: unset;
}
@media (max-width: 900px) {
    h1 { font-size: 36px; }
    .phone-stack { width: 230px; margin-top: 30px; }
    .logo-icon { margin-top: 20px; }
    .tagline h2{font-size: 14px;}
}
@media (max-width: 400px) {
    .tagline h2{font-size: 12px;}
}