 :root {
            --primary-color: #4CAF50;
            --secondary-color: #2E7D32;
            --dark-color: #343a40;
            --light-color: #f8f9fa;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            padding-top: 56px;
            background-color: #f5f5f5;
        }
        
        .navbar {
            transition: all 0.3s;
        }
        
        .navbar.scrolled {
            background-color: var(--dark-color) !important;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .espace {
            height: 30px;
        }
        
        /* Section Annonce */
        .annonce-section {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 60px 0;
            text-align: center;
            border-radius: 8px;
            margin: 30px 0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .annonce-section h2 {
            font-size: 2.2rem;
            color: var(--dark-color);
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .annonce-section p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 30px;
        }
        
        .big-annonce-button {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            text-decoration: none;
            border: none;
            padding: 15px 40px;
            font-size: 1.1rem;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            font-weight: 600;
        }
        
        .big-annonce-button:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        }
        
         /* Breaking News Section */
        .breaking-news {
            background-color:   #4CAF50;
            color: white;
            padding: 0.75rem 0;
            position: relative;
            overflow: hidden;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .breaking-news-container {
            display: flex;
            align-items: center;
        }
        
        .breaking-news-label {
            background-color: black;
            color: white;
            padding: 0.5rem 1rem;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            white-space: nowrap;
            margin-right: 1.5rem;
        }
        
        .breaking-news-label i {
            margin-right: 0.5rem;
            animation: pulse 1.5s infinite;
        }
        
        .breaking-news-content {
            display: flex;
            align-items: center;
            overflow: hidden;
            flex-grow: 1;
        }
        
        .breaking-news-ticker {
            display: flex;
            animation: ticker 30s linear infinite;
            white-space: nowrap;
        }
        
        .breaking-news-item {
            margin-right: 3rem;
            display: flex;
            align-items: center;
        }
        
        .breaking-news-item a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            display: flex;
            align-items: center;
        }
        
        .breaking-news-item a:hover {
            color: var(--light-color);
            text-decoration: underline;
        }
        
        .breaking-news-item .time {
            font-size: 0.8rem;
            opacity: 0.8;
            margin-right: 0.75rem;
        }
        
        @keyframes ticker {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }
        
        /* Cartes de propriétés */
        .card-section {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }
        
        .card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            background-color: white;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .card-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }
        
        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .card:hover .card-image img {
            transform: scale(1.05);
        }
        
        .ribbon {
            position: absolute;
            top: 15px;
            right: -30px;
            background-color: var(--primary-color);
            color: white;
            padding: 5px 35px;
            transform: rotate(45deg);
            font-size: 0.8rem;
            font-weight: 600;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }
        
        .card-content {
            padding: 20px;
        }
        
        .card-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--dark-color);
        }
        
        .card-details {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 15px;
            color: #666;
        }
        
        .card-details span {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .card-description {
            color: #666;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .card-button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 5px;
            width: 100%;
            transition: background-color 0.3s;
        }
        


        .card-button:hover {
            background-color: var(--secondary-color);
        }


        /* Badges Vidéo */
.video-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.video-available {
    background: linear-gradient(45deg, #FF416C, #FF4B2B);
    animation: pulse 2s infinite;
}

.video-unavailable {
    background: linear-gradient(45deg, #6c757d, #495057);
}

.video-badge i {
    margin-right: 3px;
}

/* Animation pulsante pour vidéo disponible */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Icône vidéo dans les détails */
.text-info .fa-video {
    color: #17a2b8;
}


        .recent-properties-horizontal {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            margin-top: 40px;
        }

        .recent-properties-horizontal h4 {
            color: var(--primary-color);
            margin-bottom: 25px;
            font-weight: 600;
            border-bottom: 2px solid var(--secondary-color);
            padding-bottom: 10px;
        }

        .recent-properties-container {
            display: flex;
            overflow-x: auto;
            gap: 20px;
            padding-bottom: 15px;
        }

        .recent-property-card {
            min-width: 250px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .recent-property-card:hover {
            transform: translateY(-5px);
        }

        .recent-property-image {
            height: 150px;
            overflow: hidden;
        }

        .recent-property-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .recent-property-content {
            padding: 15px;
        }

        .recent-property-content h5 {
            margin-bottom: 5px;
            color: var(--primary-color);
        }

        .recent-property-price {
            color: var(--secondary-color);
            font-weight: bold;
            margin-bottom: 5px;
        }

        .recent-property-location {
            color: #666;
            font-size: 0.9rem;
        }

         #recherche-proprietes {
        background-color: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    #recherche-proprietes h2 {
        color: #2c3e50;
        font-weight: 600;
        margin-bottom: 30px;
    }
    
    #recherche-proprietes .form-label {
        font-weight: 500;
        color: #34495e;
        margin-bottom: 8px;
    }
    
    #recherche-proprietes .form-select,
    #recherche-proprietes .form-control {
        height: 50px;
        border-radius: 6px;
        border: 1px solid #e0e0e0;
    }
    
    #recherche-proprietes .form-control:focus {
        border-color: #4CAF50;
        box-shadow: 0 0 0 0.25rem rgba(76, 175, 80, 0.25);
    }
    
    #recherche-proprietes .btn-primary {
        background-color: #4CAF50;
        border: none;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s;
    }
    
    #recherche-proprietes .btn-primary:hover {
        background-color: #3d8b40;
        transform: translateY(-2px);
    }

        /* Section Mission */
.about-section {
    padding: 60px 20px;
    background-color: #f0f4f8; /* Couleur de fond douce */
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.about-section h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #046bab; /* Couleur accentuée */
}

.about-section p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6; /* Hauteur de ligne pour lisibilité */
}

     /* Section Actualités */
        .section-title {
            position: relative;
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .section-title:after {
            content: "";
            display: block;
            width: 80px;
            height: 3px;
            background: var(--primary-color);
            margin: 15px auto 0;
        }
        
        .section-subtitle {
            text-align: center;
            color: var(--secondary-color);
            margin-bottom: 2.5rem;
        }
        
        .news-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .news-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        
        .news-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .news-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        
        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .news-card:hover .news-image img {
            transform: scale(1.1);
        }
        
        .news-badge {
            position: absolute;
            top: 15px;
            left: 0;
            background-color: var(--primary-color);
            color: white;
            padding: 5px 15px;
            font-size: 0.85rem;
            border-radius: 0 3px 3px 0;
            box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
        }
        
        .news-body {
            padding: 1.5rem;
        }
        
        .news-title {
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--dark-color);
        }
        
        .news-category {
            display: inline-block;
            background-color: var(--light-color);
            color: var(--primary-color);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .news-card:hover .news-category {
            background-color: var(--primary-color);
            color: white;
        }
     
        .footer {
            background-color: var(--dark-color);
            color: white;
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        
        .footer-title {
            font-size: 1.2rem;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-icons a {
            color: white;
            font-size: 1.2rem;
            transition: transform 0.3s;
        }
        
        .social-icons a:hover {
            transform: translateY(-3px);
        }
        
        .copyright {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #495057;
            color: #adb5bd;
        }
       


      