/*:root {*/
/*	--primary: #0052d4;*/
/*	--accent: #00c2ff;*/
/*	--dark: #004aad;*/
/*	--bg: #f9c953;*/
/*	--text-dark: #333;*/
/*}*/

/* Base Styling */
.container {
	max-width: 1200px;
	margin: 0 auto;
}

.hash {
	color: #ffc107;
	font-size: 2rem;
	font-weight: bold;
}

.main-title {
	color: #0074cc;
	font-weight: 700;
	font-size: 2.2rem;
	margin-bottom: 0;
}

.subtitle {
	font-weight: 500;
	font-size: 1.1rem;
	margin: 10px 0 20px;
	color: #222;
}

.description {
	font-size: 1rem;
	line-height: 1.7;
	color: #555;
	max-width: 95%;
}

/* Feature Styling */
.feature-box {
	width: 45%;
}

.feature-title {
	color: #0074cc;
	font-size: 1.2rem;
	font-weight: 600;
	margin-top: 15px;
}

.feature-text {
	font-size: 0.95rem;
	color: #555;
	line-height: 1.6;
}

/* Hexagon Icon Box */
.hexagon {
	width: 100px;
	height: 55px;
	background: #fff;
	position: relative;
	margin: 0 auto 15px;
	clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
	border: 4px solid #00c2ff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hexagon img {
	width: 32px;
	height: 32px;
}

/* SVG Connector */
.arrow-connector {
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translateX(-50%);
	width: 200px;
	height: 100px;
}

.arrow-connector svg {
	width: 100%;
	height: 100%;
}

@media (max-width: 768px) {
	.feature-box {
		width: 100%;
		margin-bottom: 40px;
	}

	.arrow-connector {
		display: none;
	}

	.col-md-6.position-relative {
		flex-direction: column;
	}
}
/* hexagonal content css */
.container {
	max-width: 1100px;
	margin: auto;
}
.features {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
}
.feature {
	width: 23%;
	text-align: center;
}
.hexagon {
	width: 90px;
	height: 104px;
	margin: 0 auto 15px;
	background: #0da4b8; /* teal background */
	clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
	display: flex;
	justify-content: center;
	align-items: center;
}
.hexagon img {
	width: 42px;
	height: 42px;
}
h3 {
	color: #0072bb;
	font-weight: 600;
	margin-bottom: 10px;
	font-size: 1.1rem;
}
p {
	font-weight: 300;
	font-size: 0.9rem;
	line-height: 1.5;
	color: #555;
}
/* Arrow container */
.arrow {
	position: absolute;
	top: 20px;
	width: 140px;
	height: 100px;
}
/* Positions of arrows between hexagons */
.arrow1 {
	left: 17.5%;
}
.arrow2 {
	left: 42.5%;
}
.arrow3 {
	left: 67.5%;
}
/* digital card heading css */
.slanted-banner {
	background-color: #e94d6a; /* Your pink/red color */
	color: white;
	text-align: center;
	font-size: 2rem;
	padding: 100px 20px;
	transform: skewY(-3deg);
	position: relative;
	z-index: 1;
}

.slanted-banner-content {
	transform: skewY(3deg); /* Counter-skew the content */
	max-width: 1200px;
	margin: 0 auto;
}

@media (max-width: 768px) {
	.slanted-banner {
		font-size: 1.5rem;
		padding: 60px 15px;
	}
}
/* product card */
/* Heading animation */
@keyframes gradientPulse {
	0%,
	100% {
		background-position: 0% 50%;
		transform: scale(1);
		color: #004aad;
	}
	50% {
		background-position: 100% 50%;
		transform: scale(1.05);
		color: #ffc107;
	}
}

.animated-heading {
	background: linear-gradient(270deg, #004aad, #00c2ff, #ffc107, #004aad);
	background-size: 800% 800%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: gradientPulse 5s ease infinite;
	display: inline-block;
	font-weight: 700;
	font-size: 2rem; /* Optional: Adjust as needed */
}

@keyframes gradientPulse {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

/* Your existing styles */
.product-card .card-img-top {
	height: 180px;
	object-fit: cover;
	position: relative;
}

/* Animated badge */
@keyframes badgePulse {
	0%,
	100% {
		background-position: 0% 50%;
		transform: rotate(-45deg) scale(1);
		background-color: #004aad;
		box-shadow: 0 0 8px #004aad88;
	}
	50% {
		background-position: 100% 50%;
		transform: rotate(-45deg) scale(1.1);
		background-color: #0066ff;
		box-shadow: 0 0 15px #0066ffcc;
	}
}

.product-card .badge-custom {
	position: absolute;
	top: 10px;
	left: -20px;
	padding: 5px 25px;
	font-size: 0.75rem;
	font-weight: bold;
	color: #fff;
	background: linear-gradient(270deg, #004aad, #00c2ff, #0066ff, #004aad);
	background-size: 800% 800%;
	transform-origin: center center;
	transform: rotate(-45deg);
	animation: badgePulse 3s ease-in-out infinite;
	box-shadow: 0 0 8px #004aad88;
}

.product-card h5.card-title {
	position: absolute;
	bottom: 0;
	width: 100%;
	margin: 0;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	text-align: center;
	padding: 8px 0;
	font-size: 1rem;
}

.card-footer-icons {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.9rem;
}

.card-footer-icons i {
	font-size: 1.2rem;
	color: #007bff;
	margin-left: 8px;
	cursor: pointer;
}

@media (max-width: 767px) {
	.product-card h5.card-title {
		font-size: 0.9rem;
	}
}
/* blue heading css */
.slanted-section {
	background-color: #00b8bb; /* turquoise */
	color: #666;
	padding: 80px 20px;
	text-align: center;

	/* Skew the whole section */
	transform: skewY(-4deg);
	/* Add subtle shadows at top and bottom */
	box-shadow: 0 15px 20px -15px rgba(0, 0, 0, 0.2),
		0 -15px 20px -15px rgba(0, 0, 0, 0.2);
}

/* Undo skew for inner content so text is normal */
.slanted-section > .content {
	transform: skewY(4deg);
	max-width: 700px;
	margin: 0 auto;
}

.slanted-section h2 {
	font-weight: 500;
	font-size: 2rem;
	margin-bottom: 10px;
	color: #666;
}

.slanted-section p {
	font-size: 1rem;
	margin-bottom: 30px;
	color: #888;
}

.btn {
	cursor: pointer;
	border-radius: 25px;
	border: none;
	padding: 12px 30px;
	font-size: 1rem;
	font-weight: 600;
	margin: 0 10px;
	transition: background-color 0.3s ease;
}

.btn-primary {
	background-color: #0072ce; /* blue */
	color: white;
}

.btn-primary:hover {
	background-color: #005bb5;
}

.btn-secondary {
	background-color: white;
	color: black;
	border: 1px solid #ccc;
}

.btn-secondary:hover {
	background-color: #f5f5f5;
}

/* four cards  */

/* Section title container */
.section-title {
	padding: 24px 20px 10px;
	display: flex;
	align-items: center;
	gap: 10px;
	border-left: 4px solid #96a4b4;
	max-width: 900px;
	margin: 0 auto;
}

.section-title .hash {
	color: var(--primary);
	font-weight: 900;
	font-size: 1.8rem;
}

.section-title h2 {
	margin: 0;
	font-weight: 700;
	font-size: 1.8rem;
	color: #222;
}

.section-title p {
	margin: 0 0 0 8px;
	font-weight: 500;
	font-size: 1rem;
	color: #444;
}

/* Main container for table + preview */
.main-container {
	max-width: 900px;
	margin: 20px auto;
	padding: 0 15px;
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: center;
}

/* Pricing table container */
.pricing-table {
	flex: 1 1 500px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 6px 12px rgb(0 0 0 / 0.1);
	overflow-x: auto;
}

/* Table styling */
table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.8rem;
	min-width: 720px;
}

thead tr {
	background: linear-gradient(to right, var(--accent), var(--dark));
	color: white;
}

thead th {
	padding: 8px 10px;
	font-weight: 700;
	text-align: center;
	border: 1px solid #d0d0d0;
	white-space: nowrap;
}

tbody td {
	padding: 6px 8px;
	text-align: center;
	border: 1px solid #ddd;
}

tbody tr:nth-child(even) {
	background: #f3f6fa;
}

/* Limit offer column */
.limit-offer {
	background: #b04210;
	color: #fff;
}

/* Preview container */
.preview-section {
	flex: 1 1 320px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 6px 12px rgb(0 0 0 / 0.1);
	padding: 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.preview-section img {
	max-width: 100%;
	height: auto;
	border-radius: 6px;
	box-shadow: 0 5px 15px rgb(0 0 0 / 0.2);
}

 /*Buttons container */
.buttons {
	margin-top: 20px;
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
}

 /*Button styles */
button {
	cursor: pointer;
	border-radius: 25px;
	font-weight: 600;
	font-size: 1rem;
	min-width: 140px;
	padding: 12px 22px;
	border: none;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary {
	background-color: var(--primary);
	color: white;
}

.btn-primary:hover {
	background-color: #003b8f;
}

.btn-outline {
	background-color: white;
	color: var(--primary);
	border: 2px solid var(--primary);
}

.btn-outline:hover {
	background-color: var(--primary);
	color: white;
}

/* Responsive adjustments */
@media (max-width: 900px) {
	.main-container {
		flex-direction: column;
		align-items: center;
	}
	.pricing-table,
	.preview-section {
		max-width: 100%;
	}
	table {
		min-width: 600px;
		font-size: 0.75rem;
	}
}

@media (max-width: 480px) {
	.section-title h2 {
		font-size: 1.4rem;
	}
	.section-title p {
		font-size: 0.9rem;
	}
	table {
		min-width: 500px;
		font-size: 0.7rem;
	}
	button {
		min-width: 120px;
		font-size: 0.9rem;
		padding: 10px 18px;
	}
}

.nav-item.active,
.nav-item.active i,
.nav-item.active span {
	color: #f16727 !important;
}
.hero-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	/* background-color: rgba(6, 74, 235, 0.4);  */
	background: linear-gradient(135deg, #4f46e5, #0ea5e9);
	color: white;
}

.hero-img {
	max-width: 100%;
	border-radius: 1.5rem;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-heading {
	font-size: 3rem;
	font-weight: 700;
}

.hero-subheading {
	font-size: 1.75rem;
	color: #fde047;
	font-weight: 600;
}

.hero-paragraph {
	font-size: 1.1rem;
	color: #e2e8f0;
}

.btn-custom {
	font-weight: 600;
	padding: 10px 20px;
	border-radius: 12px;
	margin: 10px 10px 0 0;
}

.btn-yellow {
	background-color: #fde047;
	color: #000;
}

.btn-white {
	background-color: #fff;
	color: #000;
}

@media (max-width: 768px) {
	.hero-heading {
		font-size: 2rem;
	}

	.hero-subheading {
		font-size: 1.4rem;
	}

	.btn-custom {
		width: 100%;
		margin: 10px 0;
	}
}

.card-dark {
	background-color: #1e1e1e;
	border: none;
	border-radius: 1rem;
	text-align: center;
	padding: 1.5rem;
	height: 100%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-dark:hover {
	transform: translateY(-5px);
	box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.card-dark h5 {
	font-weight: 600;
	margin-top: 1rem;
	color: #facc15; /* Gold color for headings */
}

.card-dark ul {
	list-style: none;
	padding: 0;
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.card-dark ul li {
	padding: 5px 0;
	color: #d1d5db;
}

.btn-buy {
	background-color: #0ea5e9;
	color: white;
	border: none;
	border-radius: 8px;
	padding: 8px 16px;
}

.btn-buy:hover {
	background-color: #0284c7;
}

.icon-circle {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
}

.icon-circle i {
	font-size: 1.5rem;
	color: #fff;
}
