/*
Theme Name: Estate Developer
Theme URI: https://developer.developer
Author: Developer
Author URI: https://developer.developer
Description: A premium real estate WordPress theme with property listings, team profiles, services, gallery, and blog sections. Features Revolution Slider, responsive design, and modern UI.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: estate-developer
Tags: real-estate, property, listing, responsive, custom-menu, custom-logo, featured-images
*/

	  .brokers-section {
            padding: 60px;
            background-color: #ffffff;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-header h2 {
            font-size: 2.25rem;
            color: #0f172a;
            margin-bottom: 12px;
            font-weight: 700;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #64748b;
            max-width: 550px;
            margin: 0 auto;
        }

        .brokers-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            align-items: start;
            justify-content: center;
        }

        .broker-card {
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .broker-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
        }

        .broker-img-wrapper {
            width: 100%;
            background-color: #f1f5f9;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .broker-img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: unset;
            transition: transform 0.4s ease;
        }

        .broker-card:hover .broker-img {
            transform: scale(1.02);
        }

        .broker-info {
            padding: 24px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            text-align: center;
        }

        .broker-name {
            font-size: 1.4rem;
            color: #0f172a;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .broker-title {
            font-size: 0.9rem;
            color: #2563eb;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }

        .contact-details {
            font-size: 0.95rem;
            color: #475569;
            margin-bottom: 20px;
            text-align: center;
            line-height: 1.7;
        }

        .contact-details p {
            margin-bottom: 6px;
        }

        .contact-details a {
            color: #2563eb;
            text-decoration: none;
        }

        .contact-details a:hover {
            text-decoration: underline;
        }

        .office-address {
            font-size: 0.85rem;
            color: #64748b;
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px dashed #e2e8f0;
        }

        .btn-brochure {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 20px;
            background-color: #0f172a;
            color: #ffffff;
            text-decoration: none;
            border-radius: 8px;
            font-size: 0.95rem;
            font-weight: 600;
            transition: all 0.25s ease;
            margin-top: auto;
        }

        .btn-brochure:hover {
            background-color: #ef595a;
			color: #fff;
        }

        @media (max-width: 768px) {
            .brokers-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
			.brokers-section{
				padding:40px 20px;
			}

            .section-header h2 {
                font-size: 1.85rem;
            }
        }

	

