.property-search-section {
    background: linear-gradient(145deg, #e6e6e6, #c0c0c0);
    padding: 3rem 1rem;
    font-family: 'Arial', sans-serif;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.search-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-titleee {
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 0.8s ease forwards;
}

.section-titleee h2 {
    font-size: 2.5rem;
    margin: 0;
    color: #333;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
    font-weight: bold;
}

.search-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.3s forwards;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.form-group select {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid #a0a0a0;
    border-radius: 8px;
    color: #444;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    appearance: none;
}

.form-group select option {
    background: #ffffff;
    color: #444;
}

.form-group select:focus {
    outline: none;
    border-color: #808080;
    box-shadow: 0 0 10px rgba(128, 128, 128, 0.2);
}

.form-group::after {
    content: '▼';
    position: absolute;
    right: 12px;
    top: 65%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
    font-size: 0.8rem;
}

.search-button {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 1rem;
}

.search-btn {
    background: linear-gradient(145deg, #808080, #a0a0a0);
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(145deg, #707070, #909090);
}

.search-btn:active {
    transform: translateY(1px);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Effects */
.form-group select:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .section-titleee h2 {
        font-size: 2rem;
    }

    .search-form {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .form-group select {
        padding: 10px;
    }

    .search-btn {
        width: 100%;
        padding: 12px 20px;
    }
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .property-search-section {
        padding: 2rem 1rem;
    }
}

/* About us  */
:root {
    --primary-silver: #C0C0C0;
    --dark-gray: #2C3E50;
    --light-silver: #E8E8E8;
    --accent-color: #34495E;
    --text-light: #F5F5F5;
    --gradient-dark: rgba(44, 62, 80, 0.95);
    --gradient-light: rgba(192, 192, 192, 0.95);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--light-silver);
    line-height: 1.6;
}

.about-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    animation: slideInLeft 1s ease-out;
}

.company-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    position: relative;
    text-transform: uppercase;
}

.company-title span {
    color: var(--primary-silver);
    position: relative;
    display: inline-block;
}

.company-title span::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-silver), transparent);
    animation: widthAnim 1.5s ease-out forwards;
}

.about-subtitle {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-weight: 500;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.5s forwards;
}

.about-description {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.7s forwards;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    opacity: 0;
    animation: fadeIn 1s ease-out 1s forwards;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: var(--dark-gray);
    color: var(--text-light);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-silver);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
}

.about-image-container {
    position: relative;
    animation: slideInRight 1s ease-out;
}

.about-image {
    width: 100%;
    /* height: 600px; */

}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--dark-gray);
    color: var(--text-light);
    padding: 2rem;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: scaleIn 0.5s ease-out 1s forwards;
    transform: scale(0);
}

.experience-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-silver);
}

.experience-text {
    font-size: 1rem;
    text-align: center;
}

.features-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    opacity: 0;
    animation: slideInLeft 0.5s ease-out forwards;
    gap: 10px !important;
}

.feature-item i {
    color: var(--primary-silver);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.floating-shapes div {
    position: absolute;
    background: var(--primary-silver);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 10s infinite;
}

.shape1 {
    top: 10%;
    left: 5%;
    width: 100px;
    height: 100px;
}

.shape2 {
    top: 60%;
    right: 5%;
    width: 150px;
    height: 150px;
}

.shape3 {
    bottom: 10%;
    left: 50%;
    width: 80px;
    height: 80px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

@keyframes widthAnim {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-grid {
        gap: 2rem;
    }

    .company-title {
        font-size: 3rem;
    }

    .about-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-container {
        order: -1;
        margin-top: 74px;
    }

    .about-image {
        height: 500px;
    }

    .experience-badge {
        width: 150px;
        height: 150px;
        right: -20px;
        bottom: -20px;
    }

    .experience-number {
        font-size: 2.5rem;
    }

    .company-title {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .floating-shapes div {
        display: none;
    }
}

@media (max-width: 480px) {
    .about-container {
        padding: 0 1rem;
    }

    .about-image {
        height: 400px;
    }

    .company-title {
        font-size: 2rem;
    }

    .about-subtitle {
        font-size: 1.1rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .about-section {
        position: relative;
        padding: 0.5px 8px !important;
        overflow: hidden;
    }

    .experience-badge {
        width: 120px;
        height: 120px;
        padding: 1rem;
    }

    .experience-number {
        font-size: 2rem;
    }
}