/* Animation Styles */
.animate-section {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease-out;
}

.animate-section.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.color-white {color:#fff;}

.prompt-heading {
	font-family: var(--dark-font);
	font-size: 40px;
}

.grad1 {
	background: linear-gradient(135deg, #036, #c00);
}

/* Role Cards Section */

.role-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.role-card {
	background: white;
	border-radius: 0;
	padding: 2rem;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	border: 3px solid transparent;
}

.role-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
	border-color: #126BD9;
}

.role-card.active {
	border-color: #fff;
	background: #fff;
}

.role-card-icon {
	font-size: 3rem;
	color: #126BD9;
	margin-bottom: 1rem;
}

.role-card h3 {
	color: #333;
	margin-bottom: 1rem;
	font-weight: 600;
}

.role-card p {
	color: #666;
	line-height: 1.6;
}

/* Tabbed Content Section */

.tab-navigation {
	display: flex;
	justify-content: center;
	margin-bottom: 3rem;
	border-bottom: 2px solid #e9ecef;
}

.tab-button {
	background: none;
	border: none;
	padding: 1rem 2rem;
	font-size: 1.1rem;
	font-weight: 600;
	color: #666;
	cursor: pointer;
	transition: all 0.3s ease;
	border-bottom: 3px solid transparent;
}

.tab-button:hover {
	color: #fff;
}

.tab-button.active {
	color: #126BD9;
	border-bottom-color: #126BD9;
}

.tab-content {
	display: none;
}

.tab-content.active {
	display: block;
}

.use-case {
	background: #f8f9fa;
	border-radius: 0;
	padding: 2rem;
	margin-bottom: 2rem;
	border-left: 4px solid #D9ECFF;
}

.use-case-header {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

.use-case-icon {
	font-size: 1.5rem;
	color: #003366;
	margin-right: 1rem;
}

.use-case h4 {
	color: #333;
	margin-bottom: 1rem;
	font-weight: 600;
}

.scenario {
	background: white;
	padding: 1rem;
	border-radius: 0;
	margin-bottom: 1rem;
	border-left: 3px solid #28a745;
}

.prompt-example {
	background: #e3f2fd;
	padding: 1rem;
	border-radius: 0;
	margin-bottom: 1rem;
	font-family: 'Courier New', monospace;
	border-left: 3px solid #2196f3;
}

.simulated-note {
	background: #fff3cd;
	border: 1px solid #ffeaa7;
	border-radius: 0;
	padding: 1rem;
	margin: 1rem 0;
	font-style: italic;
}

.try-it-box {
	background: white;
	border: 2px solid #126BD9;
	border-radius: 0;
	padding: 1.5rem;
	margin: 1rem 0;
}

.why-helpful {
	background: #e8f5e8;
	padding: 1rem;
	border-radius: 0;
	margin-top: 1rem;
	border-left: 3px solid #28a745;
}

.try-it-box {
	background: #f8f9fa;
	border: 1px solid #e9ecef;
	border-radius: 0;
	padding: 1rem;
	margin-top: 1rem;
}

.contact-section {
	background: #D9ECFF;
	border-radius: 0;
	padding: 2rem;
	margin-top: 2rem;
}

/* Override any default button styling */
.button {
	border-radius: 0 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
	.hero-section h1 {
		font-size: 2rem;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.tab-navigation {
		flex-direction: column;
	}

	.tab-button {
		border-bottom: none;
		border-right: 3px solid transparent;
	}

	.tab-button.active {
		border-right-color: #126BD9;
		border-bottom-color: transparent;
	}

}