/* 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);
}

/* OwlONE Platform Overview Section */
.platform-overview-section {
	padding: 80px 0;
	background: #f8f9fa;
}

.overview-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	margin-top: 3rem;
	align-items: center;
}

.overview-text {
	padding: 2rem;
}

.overview-visual {
	background: white;
	border-radius: 0;
	padding: 2rem;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	border: 2px solid #e9ecef;
}

.overview-visual img {
	max-width: 300px; /* Adjust this value to your desired maximum width */
	max-height: 250px; /* Adjust this value to your desired maximum height for portrait images */
	height: auto; /* Crucial for maintaining aspect ratio */
	display: block; /* Allows margin: auto to center the image */
	margin: 0 auto; /* Centers the image horizontally */
	border-radius: 8px;
	object-fit: contain; /* Ensures the entire image is visible within the defined max-width/height */
}


/* Educational Use Cases Section */
.use-cases-section {
	padding: 80px 0;
}

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

.use-case-card {
	background: #f8f9fa;
	border-radius: 0;
	padding: 2rem;
	text-align: left;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	border-left: 4px solid #007bbf;
}

.use-case-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.use-case-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	display: block;
}

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

.use-case-card p {
	color: #666;
	line-height: 1.6;
	margin: 0;
}

/* Featured Agents Section */
.featured-agents-section {
	padding: 80px 0;
	background: #f8f9fa;
}

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

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

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

.agent-image {
	width: 100%;
	height: 200px;
	background: #e9ecef;
	border-radius: 8px;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: #007bbf;
}

.agent-card h4 {
	color: #333;
	margin-bottom: 1rem;
	font-weight: 600;
	font-size: 1.3rem;
}

.agent-card p {
	color: #666;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.agent-category-header {
	/* Remove: grid-column: 1 / -1; */ /* This property is no longer needed/effective */
	text-align: center;
	margin-top: 0; /* Adjust top margin to fit within the card */
	margin-bottom: 1rem; /* Keep some space below it */
	background: #d9ecff;
	border: 1px solid #a0c8e0;
	border-radius: 0;
	padding: 1rem;
	color: #333;
}

.agent-category-header h4 {
	font-size: 1.5rem;
	color: #333;
	font-weight: 600;
	margin: 0;
}


.disclaimer {
	background: #ffc107;
	border: 1px solid #d4b98b;
	border-radius: 0;
	padding: 1rem;
	margin-top: 2rem;
	text-align: center;
	color: #333;
}

/* Get Started Section */

.supporting-resources {
	padding: 2rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {

	.overview-content,
	.get-started-content {
		grid-template-columns: 1fr;
	}

	.use-cases-grid,
	.agents-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 992px) {
	.overview-content,
	.get-started-content {
		flex-direction: column;
	}

	.use-cases-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	}

	.agents-grid {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	}
}

/* Make the last agent card span full width when there are multiple columns */
@media (min-width: 1114px) {
	.agents-grid .agent-card:last-child {
		grid-column: 1 / -1;
	}
}