/* Hero Section */
.hero-section {
	background: linear-gradient(rgba(46, 125, 50, 0.9), rgba(46, 125, 50, 0.3)), var(--wpr-bg-ad21a825-5a08-4d10-9611-a4957f3935a8) center/cover no-repeat;
	color: white;
	padding: 80px 0;
	margin-bottom: 50px;
}

.search-form {
	background: white;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-control:focus {
	border-color: var(--primary-light);
	box-shadow: 0 0 0 0.25rem rgba(46, 125, 50, 0.25);
}

/* Section Headers */
.section-header {
	text-align: center;
	margin-bottom: 40px;
	position: relative;
}

.section-header h2 {
	color: var(--primary-color);
	font-weight: 700;
	margin-bottom: 15px;
}

.section-header::after {
	content: '';
	display: block;
	width: 80px;
	height: 3px;
	background-color: var(--primary-color);
	margin: 0 auto;
}

.section-header.right::after {
	content: '';
	display: block;
	width: 80px;
	height: 3px;
	background-color: var(--primary-color);
	margin: 0 0;
}

/* Steps Section */
.step-box {
	text-align: center;
	padding: 30px 20px;
	border-radius: 10px;
	transition: all 0.3s ease;
	height: 100%;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	border: 1px solid #eee;
}

.step-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.step-icon {
	width: 70px;
	height: 70px;
	background-color: var(--primary-color);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 1.8rem;
}

/* Featured Ads */
.featured-ad {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	height: 100%;
}

.ad-image {
	height: 100%;
	background-color: #f5f5f5;
	background-size: cover;
	background-position: center;
}

.ad-content {
	padding: 20px;
}

.ad-category {
	color: var(--primary-color);
	font-weight: 500;
}

/* Services Section */
.services-section {
	background-color: #f9f9f9;
	padding: 60px 0;
}

.service-box {
	background: white;
	border-radius: 10px;
	padding: 25px;
	margin-bottom: 20px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	transition: all 0.3s ease;
	height: 100%;
}

.service-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-icon {
	color: var(--primary-color);
	font-size: 2rem;
	margin-bottom: 15px;
}

/* Categories Section */
.category-box {
	text-align: center;
	padding: 25px 15px;
	border-radius: 10px;
	transition: all 0.3s ease;
	height: 100%;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	border: 1px solid #eee;
}

.ads-category-link {
    text-decoration: none;
}

.ads-category-link h5 {
    color: #000;
}

.category-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
	background-color: var(--primary-color);
	color: white;
}

.ads-category-link:hover h5 {
    color: white;
}

.category-box:hover .category-icon {
	color: white;
}

.category-icon {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 15px;
}

/* Latest Ads & Articles */
.ad-card, .article-card {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	transition: all 0.3s ease;
	height: 100%;
}

.ad-card:hover, .article-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.ad-image-small, .article-image {
	height: 180px;
	background-color: #f5f5f5;
	background-size: cover;
	background-position: center;
}

.ad-details, .article-details {
	padding: 15px;
}

.swiper-pagination{
	position: static;
	padding-top:50px;
}

/* Newsletter Section */
.newsletter-section {
	background: linear-gradient(rgba(46, 125, 50, 0.9), rgba(46, 125, 50, 0.8)), var(--wpr-bg-58001553-8168-4e3a-a5ee-0aa5f3f89c63) center/cover no-repeat;
	color: white;
	padding: 60px 0;
}

.newsletter-form .form-control {
	padding: 12px 15px;
	border-radius: 5px;
	border: none;
}



/* Responsive Adjustments */
@media (max-width: 768px) {
	.hero-section {
		padding: 50px 0;
	}
	
	.search-form {
		padding: 20px;
	}
	
	.section-header h2 {
		font-size: 1.5rem;
	}
}