.form-group.captcha-box {
    width: 100px;
}


.form-group.captcha-box input {
    width: calc(100% - 100px);
}


.form-group.captcha-box .capcha-wrap {
    width: 100px;
    position: absolute;
    right: 0;
    height: 45px;
    top: 0;
    border: 1px solid #cecece;
    background: #f5f5f5;
    text-align: center;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Featured Projects Section Styles */
.featured-projects-section {
    padding: 4rem 1rem;
    background: linear-gradient(to bottom, #f0f2f5, #e0e3e8);
}

.featured-container {
    max-width: 1200px;
    margin: 0 auto;
}

.featured-section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
}

.featured-section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #3498db;
    margin: 1rem auto 0;
}

.featured-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.featured-project-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.featured-project-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.featured-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-project-card:hover .featured-project-image img {
    transform: scale(1.05);
}

.featured-project-details {
    padding: 1.5rem;
}

.featured-project-name {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.featured-project-location {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 1rem;
}

.featured-project-location::before {
    content: '\1F4CD';
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.featured-project-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2980b9;
    margin-bottom: 1rem;
}

.featured-enquire-btn {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background-color: #3498db;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.featured-enquire-btn:hover {
    background-color: #2980b9;
}

/* Responsive adjustments for Featured Section */
@media (max-width: 768px) {
    .featured-section-title {
        font-size: 2rem;
    }

    .featured-projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

