/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : March 29, 2026, 1:49:58 PM
    Author     : Mark
*/



/* ========== MODERN MINIMALIST STYLING ========== */
:root {
	--primary-black: #000000;
	--pure-white: #FFFFFF;
	--accent-gold: #FFD100;
	--accent-gold-glow: rgba(255, 209, 0, 0.25);
	--gray-100: #f8f9fa;
	--gray-200: #e9ecef;
	--gray-300: #dee2e6;
	--gray-800: #1a1a1a;
	--gray-900: #0a0a0a;
	--transition-smooth: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
	--shadow-sm: 0 8px 32px rgba(0, 0, 0, 0.08);
	--shadow-md: 0 20px 40px rgba(0, 0, 0, 0.12);
	--shadow-gold: 0 0 20px rgba(255, 209, 0, 0.15);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', sans-serif;
	background: var(--primary-black);
	color: var(--gray-800);
	overflow-x: hidden;
	line-height: 1.5;
	scroll-behavior: smooth;
}

/* Animated grain/noise overlay */
body::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
	pointer-events: none;
	opacity: 0.3;
	z-index: 999;
}

/* Glowing orb backgrounds */
.bg-orb-1 {
	position: fixed;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(255,209,0,0.08) 0%, rgba(0,0,0,0) 70%);
	border-radius: 50%;
	top: -200px;
	right: -150px;
	pointer-events: none;
	z-index: 0;
	animation: floatOrb 20s ease-in-out infinite;
}

.bg-orb-2 {
	position: fixed;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(255,209,0,0.05) 0%, rgba(0,0,0,0) 70%);
	border-radius: 50%;
	bottom: -250px;
	left: -200px;
	pointer-events: none;
	z-index: 0;
	animation: floatOrb 25s ease-in-out infinite reverse;
}

@keyframes floatOrb {
	0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
	50% { transform: translate(30px, -20px) scale(1.05); opacity: 0.7; }
}

/* Navbar Styling */
.navbar {
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(12px);
	padding: 16px 0;
	transition: var(--transition-smooth);
	border-bottom: 1px solid rgba(255, 209, 0, 0.15);
}

.navbar.scrolled {
	padding: 10px 0;
	background: rgba(0, 0, 0, 0.95);
}

.navbar-brand {
	display: flex;
	align-items: center;
	gap: 8px;
}

.emblem-logo {
	transform: scale(1.3);
	margin-right: 4px;
	filter: drop-shadow(0 0 8px rgba(255, 209, 0, 0.3));
}

.main-logo {
	transform: scale(1.05);
	transform-origin: left center;
	margin-top: 4px;
}

.navbar-nav .nav-link {
	color: var(--gray-300);
	font-weight: 500;
	margin: 0 8px;
	transition: var(--transition-smooth);
	position: relative;
}

.navbar-nav .nav-link:hover {
	color: var(--accent-gold);
}

.navbar-nav .nav-link::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 50%;
	transform: translateX(-50%) scaleX(0);
	width: 80%;
	height: 2px;
	background: var(--accent-gold);
	transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
	transform: translateX(-50%) scaleX(1);
}

.btn-outline-dark {
	background: transparent;
	border: 1.5px solid var(--accent-gold);
	color: var(--accent-gold);
	border-radius: 40px;
	padding: 10px 28px;
	font-weight: 600;
	transition: var(--transition-smooth);
}

.btn-outline-dark:hover {
	background: var(--accent-gold);
	color: var(--primary-black);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(255, 209, 0, 0.25);
}

.btn-primary {
	background: var(--accent-gold);
	border: none;
	color: var(--primary-black);
	border-radius: 40px;
	padding: 10px 28px;
	font-weight: 700;
	transition: var(--transition-smooth);
}

.btn-primary:hover {
	background: var(--pure-white);
	color: var(--primary-black);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255, 209, 0, 0.3);
}

/* Hero Section */
.hero-section {
	background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
	padding: 100px 0 80px;
	position: relative;
	overflow: hidden;
}

.hero-content {
	animation: fadeInUp 0.8s ease-out;
}

.hero-title {
	font-size: 2.6rem;
	font-weight: 800;
	line-height: 1.2;
	
	/* background: linear-gradient(135deg, #FFFFFF 0%, #FFD100 100%); */
	
	// background: #FFD100; /* #FFFFFF #FFD100 */
	background: linear-gradient(360deg, #FFFFFF 0%, #FFD100 100%);
	
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	margin-bottom: 24px;
}

.hero-subtitle {
	font-size: 1.1rem;
	color: #aaa;
	margin-bottom: 32px;
	line-height: 1.6;
}


/* Calculator Card - Modern Glassmorphism */
.calculator-card {
	margin-top: 34px;
	background: rgba(10, 10, 10, 0.75);
	backdrop-filter: blur(16px);
	border-radius: 32px;
	padding: 30px;
	border: 1px solid rgba(255, 209, 0, 0.2);
	box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 209, 0, 0.1);
	transition: var(--transition-smooth);
	animation: fadeInUp 0.8s ease-out 0.2s both;
	transform: scale(0.9) !important;
	transform-origin: center center;
}

/* Optional: adjust hover effect to maintain scale interaction */
.calculator-card:hover {
	transform: scale(0.91) !important;
	border-color: rgba(255, 209, 0, 0.4);
	box-shadow: 0 30px 55px -15px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 209, 0, 0.2);
}

.exchange-rate {
	background: rgba(255, 209, 0, 0.08);
	border-radius: 60px;
	padding: 12px 20px;
	text-align: center;
	font-weight: 600;
	font-size: 1rem;
	color: var(--accent-gold);
	margin-bottom: 28px;
	border: 1px solid rgba(255, 209, 0, 0.2);
}

.form-label {
	font-weight: 600;
	margin-bottom: 8px;
	color: #ccc;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.form-control, .form-select {
	background: rgba(20, 20, 20, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 14px 18px;
	color: var(--pure-white);
	font-size: 1rem;
	transition: var(--transition-smooth);
}

.form-control:focus, .form-select:focus {
	border-color: var(--accent-gold);
	box-shadow: 0 0 0 3px rgba(255, 209, 0, 0.2);
	background: rgba(20, 20, 20, 1);
	color: var(--pure-white);
}

.form-control::placeholder {
	color: #666;
}

.input-group {
	gap: 8px;
}

.input-group .form-select {
	flex: 0 0 auto;
	width: auto;
	min-width: 85px;
	background: rgba(0, 0, 0, 0.8);
	border-right: none;
	border-radius: 20px;
	font-weight: 600;
	color: var(--accent-gold);
	border: 2px solid rgba(255, 209, 0, 0.2);
}

.input-group .form-control {
	flex: 1;
	border-radius: 20px;
}

.currency-selector {
	background: var(--primary-black);
	color: var(--accent-gold);
	font-weight: 600;
	border: 2px solid rgba(255, 209, 0, 0.2);
}

.btn-accent {
	background: linear-gradient(135deg, #FFD100 0%, #FFB800 100%);
	color: var(--primary-black);
	font-weight: 700;
	padding: 14px;
	border-radius: 40px;
	border: none;
	transition: var(--transition-smooth);
	font-size: 1rem;
}

.btn-accent:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(255, 209, 0, 0.35);
	filter: brightness(1.05);
}

/* Section Titles */
.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 50px;
	text-align: center;
	position: relative;
	background: linear-gradient(135deg, #FFFFFF, #FFD100);
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
}

.section-title:after {
	content: '';
	display: block;
	width: 80px;
	height: 3px;
	background: var(--accent-gold);
	margin: 18px auto 0;
	border-radius: 3px;
}

/* Feature Cards */
.feature-card {
	background: rgba(10, 10, 10, 0.7);
	backdrop-filter: blur(12px);
	border-radius: 28px;
	padding: 32px 24px;
	text-align: center;
	border: 1px solid rgba(255, 209, 0, 0.15);
	transition: var(--transition-smooth);
	height: 100%;
}

.feature-card:hover {
	transform: translateY(-8px);
	border-color: rgba(255, 209, 0, 0.4);
	box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.4);
}

.feature-icon {
	font-size: 2.8rem;
	color: var(--accent-gold);
	margin-bottom: 20px;
}

.feature-card h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 12px;
	color: var(--pure-white);
}

.feature-card p {
	color: #aaa;
	line-height: 1.6;
}

/* How To Section */
.how-to-section {
	background: linear-gradient(180deg, #050505 0%, #000000 100%);
	padding: 80px 0;
}

.how-to-section h3 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 24px;
	color: var(--pure-white);
}

.how-to-section p {
	color: #aaa;
	margin-bottom: 24px;
}

.how-to-section ol li {
	margin-bottom: 16px;
	color: #ccc;
	font-size: 1rem;
}

/* Agent Section */
.agent-section {
	background: #000000;
	padding: 80px 0;
	position: relative;
	border-top: 1px solid rgba(255, 209, 0, 0.2);
	border-bottom: 1px solid rgba(255, 209, 0, 0.2);
}

.agent-card {
	background: rgba(20, 20, 20, 0.8);
	backdrop-filter: blur(10px);
	border-radius: 28px;
	padding: 28px;
	border: 1px solid rgba(255, 209, 0, 0.2);
	transition: var(--transition-smooth);
}

.agent-card:hover {
	border-color: var(--accent-gold);
	transform: translateY(-4px);
}

.agent-card h4 {
	color: var(--accent-gold);
	font-weight: 700;
	margin-bottom: 20px;
}

.agent-card ul li {
	color: #ccc;
	margin-bottom: 12px;
}

/* Contact Section */
.contact-section {
	background: #050505;
	padding: 80px 0;
}

.contact-form {
	background: rgba(10, 10, 10, 0.7);
	backdrop-filter: blur(12px);
	border-radius: 32px;
	padding: 32px;
	border: 1px solid rgba(255, 209, 0, 0.15);
}

.contact-info h4 {
	color: var(--pure-white);
	font-size: 1.8rem;
	margin-bottom: 20px;
}

.contact-info p {
	color: #aaa;
	margin-bottom: 12px;
}

.contact-info h5 {
	color: var(--accent-gold);
	margin: 24px 0 12px;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Footer */
footer {
	background: #000000;
	padding: 50px 0 30px;
	border-top: 1px solid rgba(255, 209, 0, 0.15);
}

footer p {
	color: #666;
	font-size: 0.85rem;
}

footer a {
	color: #888;
	text-decoration: none;
	transition: var(--transition-smooth);
}

footer a:hover {
	color: var(--accent-gold);
}

.social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 50%;
	color: var(--pure-white);
	margin-right: 12px;
	transition: var(--transition-smooth);
	border: 1px solid rgba(255, 209, 0, 0.2);
}

.social-icon:hover {
	background: var(--accent-gold);
	color: var(--primary-black);
	transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pulse {
	0%, 100% { opacity: 0.6; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.02); }
}

.animate-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.7s ease-out;
}

.animate-on-scroll.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
	.hero-title {
		font-size: 2.0rem;
	}
	.section-title {
		font-size: 1.8rem;
	}
	.calculator-card {
		padding: 24px;
		margin-top: 40px;
	}
	.navbar .btn-outline-dark,
	.navbar .btn-primary {
		padding: 8px 20px;
		font-size: 0.85rem;
		margin: 5px 0;
	}
}

/* Chat button */
#tawk-toggle {
	background: linear-gradient(135deg, #FFD100, #FFB800);
	color: #000;
	font-weight: 600;
	box-shadow: 0 4px 15px rgba(255, 209, 0, 0.3);
	transition: var(--transition-smooth);
}

#tawk-toggle:hover {
	transform: scale(1.05);
	box-shadow: 0 6px 20px rgba(255, 209, 0, 0.4);
}

/* Keep original page-wrapper scaling */
.page-wrapper {
	transform: scale(0.95);
	transform-origin: top left;
	width: calc(100% / 0.95);
	height: calc(100% / 0.95);
	margin-bottom: -80px;
}

.compress-space {
	align-items: center !important;
	margin-top: -80px;
	margin-bottom: -80px;
}

.second-section {
	background-color: transparent !important;
	color: white !important;
	border: 2px solid rgba(255, 209, 0, 0.2);
}

.text-accent {
	color: var(--accent-gold) !important;
}



.myselect {
	
	border: 2px solid rgba(255, 209, 0, 0.2);
	
}



/* Custom dropdown arrow for select elements */
.form-select.currency-selector {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23FFD100' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 14px;
	padding-right: 2.5rem !important;
	cursor: pointer;
}

/* Optional: add a subtle hover effect on the arrow area */
.form-select.currency-selector:hover {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

/* Optional: add a subtle animation when dropdown is opened */
.form-select.currency-selector:focus {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23FFD100' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}	






/* Custom dropdown arrow for select elements */
.form-select.myselect {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23FFD100' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 14px;
	padding-right: 2.5rem !important;
	cursor: pointer;
}

/* Optional: add a subtle hover effect on the arrow area */
.form-select.myselect:hover {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

/* Optional: add a subtle animation when dropdown is opened */
.form-select.myselect:focus {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23FFD100' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}	



@media (min-width: 768px) {
		
	.navbar-nav {
		
		margin-right: 28px !important;
		
	}

}


