/* Hero Section */
.contact-hero {
    position: relative;
    height: 400px;
    background-image: url('../Images//Completed/Prestige.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #ffffff;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.hero-title.animate-visible,
.breadcrumb.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #6C1A78;
}

.separator {
    margin: 0 10px;
    color: #ffffff;
}

.current {
    color: #ffffff;
}

        .container {
            margin: 30px 30px;
            max-width: 1600px;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .container.animate-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 25px;
            gap: 40px;
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .header.animate-visible {
            opacity: 1;
            transform: translateX(0);
        }

        .header h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 40px;
            font-weight: 700;
            line-height: 1.2;
           
        }

        .header-text {
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            line-height: 1.7;
            color: #333;
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
            text-align: justify;
            hyphens: none;
            overflow-wrap: normal;
            word-break: keep-all;
        }

        .header-text.animate-visible {
            opacity: 1;
            transform: translateX(0);
        }

        .filter-dropdown {
            position: relative;
            margin-bottom: 25px;
            max-width: 250px;
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
            z-index: 2;
        }

        .filter-dropdown.animate-visible {
            opacity: 1;
            transform: translateX(0);
        }

        .dropdown-button {
            width: 100%;
            padding: 15px 20px;
            background-color: #d3d3d3;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
        }

        .dropdown-button:hover {
            background-color: #c0c0c0;
        }

        .dropdown-button::after {
            content: '▼';
            font-size: 12px;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            display: none;
            z-index: 9999;
            margin-top: 5px;
        }

        .dropdown-menu.active {
            display: block;
        }

        .dropdown-item {
            padding: 12px 20px;
            cursor: pointer;
            transition: background-color 0.2s;
            border-bottom: 1px solid #eee;
        }

        .dropdown-item:last-child {
            border-bottom: none;
        }

        .dropdown-item:hover {
            background-color: #f0f0f0;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }

        .project-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            z-index: 1;
            display: flex;
            flex-direction: column;
            height: 100%;
            min-height: 380px;
        }

        .project-card.clickable {
            cursor: pointer;
        }

        .project-card.clickable:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }

        .project-card.not-clickable:hover {
            transform: translateY(-2px);
        }

        .project-image-container {
            position: relative;
            flex-shrink: 0;
            height: 350px;
            margin: 0;
            padding: 0;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .project-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            margin: 0;
            padding: 0;
            display: block;
        }

        .project-status {
            position: absolute;
            top: 15px;
            right: 15px;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            color: white;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

        .project-status.upcoming {
            background-color: #6C1A78;
        }

        .project-status.completed {
            background-color: #6C1A78;
        }

        .project-info {
            padding: 15px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            z-index: 2;
            position: relative;
            height: 100%;
        }

        .project-name {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            line-height: 1.4;
            margin-bottom: 2px;
        }

        .project-location {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            margin-top: 2px;
        }

        .location-icon {
            flex-shrink: 0;
            color: #6C1A78;
            margin-top: 3px;
        }

        .location-text {
            font-size: 14px;
            color: #666;
            line-height: 1.4;
        }

        .navigation {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }

        .nav-button {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid #333;
            background: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: all 0.3s;
        }

        .nav-button:hover {
            background: #333;
            color: white;
        }

        .nav-button:disabled {
            opacity: 0.4;
            cursor: not-allowed;
            border-color: #999;
        }

        .nav-button:disabled:hover {
            background: white;
            color: #333;
        }

        /* Responsive styles */
        @media (max-width: 768px) {
            .container {
                margin: 15px 30px;
                max-width: 1600px;
            }
            
            .header {
                flex-direction: column;
                margin-bottom: 20px;
                gap: 20px;
            }

            .header h1 {
                font-size: 24px;
            }

            .projects-grid {
                grid-template-columns: 1fr;
            }
            
            .project-card {
                min-height: 300px;
            }
            
            .project-image-container {
                height: 200px;
                padding: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                overflow: hidden;
            }
            
            .project-info {
                padding: 12px;
                flex-grow: 1;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                height: 100%;
            }
            
            .project-name {
                font-size: 16px;
                margin-bottom: 2px;
            }
            
            .project-location {
                margin-top: 2px;
            }
            
            .location-text {
                font-size: 12px;
            }
            
            .header-text {
                text-align: justify;
            }
            
            .contact-hero {
                height: 300px;
            }
            
            .hero-title {
                font-size: 40px;
            }
        }

        @media (max-width: 480px) {
            .project-image-container {
                height: 280px;
                padding: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                overflow: hidden;
            }
            
            .project-name {
                font-size: 16px;
            }
            
            .location-text {
                font-size: 12px;
            }
            
            .contact-hero {
                height: 250px;
            }
            
            .hero-title {
                font-size: 32px;
            }
        }