/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/

/* 
 * ==========================================
 * AI Global Styles (Common)
 * ==========================================
 * Prefix: .ai-global-
 */

:root {
	--ai-primary-color: #2e87f8;
	--ai-primary-hover: #1a6ddb;
	--ai-text-dark: #333333;
	--ai-text-gray: #666666;
	--ai-bg-light: #f9f9f9;
}

/* Global Container */
.ai-global-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

/* Global Section */
.ai-global-section {
	padding: 80px 0;
	width: 100%;
	position: relative;
}

.ai-global-section.bg-light {
	background-color: var(--ai-bg-light);
}

/* Global Typography */
.ai-global-title {
	font-size: 36px;
	font-weight: 700;
	color: var(--ai-text-dark);
	line-height: 1.3;
	margin-bottom: 20px;
}

.ai-global-subtitle {
	font-size: 18px;
	color: var(--ai-text-gray);
	line-height: 1.6;
	margin-bottom: 30px;
}

/* Global Buttons */
.ai-global-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 30px;
	font-size: 16px;
	font-weight: 600;
	color: #ffffff;
	background-color: var(--ai-primary-color);
	border-radius: 5px;
	text-decoration: none;
	transition: background-color 0.3s ease;
	border: none;
	cursor: pointer;
}

.ai-global-btn:hover {
	background-color: var(--ai-primary-hover);
	color: #ffffff;
}

.ai-global-btn-outline {
	background-color: transparent;
	border: 2px solid var(--ai-primary-color);
	color: var(--ai-primary-color);
}

.ai-global-btn-outline:hover {
	background-color: var(--ai-primary-color);
	color: #ffffff;
}

/* Utility Utilities */
.ai-text-center {
	text-align: center;
}

.ai-flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.ai-mb-20 {
	margin-bottom: 20px;
}

.ai-mb-40 {
	margin-bottom: 40px;
}

.ai-mb-60 {
	margin-bottom: 60px;
}

/* Global Banners (Event & Slogan) */
.ai-global-event-banner {
	background-color: #fff;
	padding: 20px 0;
	text-align: center;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
}

.ai-global-event-banner a {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	text-decoration: none;
}

.ai-global-event-banner a:hover {
	text-decoration: underline;
	color: var(--ai-primary-color);
}

.ai-global-promo-slogan {
	padding: 60px 0;
	text-align: center;
	background-color: #fff;
}

.ai-global-promo-slogan h2 {
	font-size: 24px;
	font-weight: 700;
	color: #333;
	margin: 0;
}

/* Global Stats Section */
.ai-global-stats-wrapper {
	display: flex;
	justify-content: center;
	padding: 60px 0;
	background: #fff;
	border-top: 1px solid #eee;
}

.ai-global-stats-row {
	display: flex;
	width: 100%;
	justify-content: space-around;
}

.ai-global-stat-item {
	text-align: center;
	flex: 1;
}

.ai-global-stat-number {
	font-size: 48px;
	font-weight: 800;
	color: var(--ai-primary-color, #2e87f8);
	display: block;
	margin-bottom: 10px;
}

.ai-global-stat-label {
	font-size: 16px;
	color: #555;
	font-weight: 500;
}

@media (max-width: 768px) {
	.ai-global-stats-row {
		flex-direction: column;
		gap: 40px;
	}
}