:root {
	--primary-color: #39FF14;
	--secondary-color: #000000;
	--text-light: #f8f9fa;
	--text-dark: #212529;
}

* {
	box-sizing: border-box;
	font-family: 'Inter', sans-serif;
}

h1, h2, h3, .display-1, .display-4, .navbar-brand {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
}

body {
	overflow-x: hidden;
	color: var(--text-dark);
}

.bg-black {
	background-color: var(--secondary-color) !important;
}

.text-primary {
	color: var(--primary-color) !important;
}

.btn-primary {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	color: var(--secondary-color);
	font-weight: 600;
	transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-primary:hover {
	background-color: #32e612;
	border-color: #32e612;
	color: var(--secondary-color);
	transform: scale(1.05);
}

.hero-section {
	background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
	color: white;
	min-height: 80vh;
}

.hero-img-wrapper img {
	width: 100%;
	max-height: 500px;
	object-fit: cover;
}

.gradient-text {
	background: linear-gradient(45deg, var(--primary-color), #ffffff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-size: 200% auto;
	animation: shine 3s linear infinite;
}

@keyframes shine {
	to {
		background-position: 200% center;
	}
}

.step-number {
	width: 60px;
	height: 60px;
	background-color: var(--primary-color);
	color: var(--secondary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 800;
	margin: 0 auto;
}

.calculator-card {
	border-top: 5px solid var(--primary-color);
}

.operator-card img {
	max-height: 40px;
	filter: grayscale(100%);
	transition: filter 0.3s ease;
}

.operator-card:hover img {
	filter: grayscale(0%);
}

.testimonial-card {
	border-left: 4px solid var(--primary-color);
}

.nav-link {
	font-weight: 500;
	transition: color 0.3s ease;
}

.nav-link:hover {
	color: var(--primary-color) !important;
}

footer a:hover {
	color: var(--primary-color) !important;
	opacity: 1;
}

@media (max-width: 1199px) {
	h1 { font-size: 2.2rem; }
	h2 { font-size: 1.8rem; }
}

@media (max-width: 767px) {
	h1 { font-size: 1.8rem; }
	h2 { font-size: 1.4rem; }
	.display-1 { font-size: 4rem; }
}

@media (max-width: 480px) {
	h1 { font-size: 1.5rem; }
	.navbar-brand span { font-size: 1rem; }
}/* Main container padding (top and sides) */
.dataTrustFrame {
    padding: 24px 20px 0 20px;
}

/* Compact headings styles */
.dataTrustFrame h1 {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 16px;
    line-height: 1.3;
}

.dataTrustFrame h2 {
    font-size: 19px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 14px;
    line-height: 1.3;
}

.dataTrustFrame h3 {
    font-size: 17px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
    line-height: 1.3;
}

.dataTrustFrame h4 {
    font-size: 15px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 10px;
}

.dataTrustFrame h5 {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Paragraph styles */
.dataTrustFrame p {
    font-size: 14px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 16px;
}

/* List styles */
.dataTrustFrame ul {
    margin-bottom: 16px;
    padding-left: 20px;
    list-style-type: disc;
}

.dataTrustFrame li {
    font-size: 14px;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 8px;
}

/* Remove margin from the last element to avoid double spacing */
.dataTrustFrame > *:last-child {
    margin-bottom: 0;
}
.btnHover:hover {
	color: #000000 !important;
	font-weight: 900;
}
section {
	overflow: hidden;
}