/* Project Page Style Sheet Image Slids  Code Start Here */

/* Hero Section Styles */
.hero-section {
    position: relative;
    width: 100%;
    height: 300px; 
    overflow: hidden;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 1;
    padding: 20px;
    border-radius: 10px; 
}

.hero-content h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: white;
     font-family: 'Georgia', serif;
}

.hero-content p {
    font-size: 1rem;
    margin-top: 10px;
    color: black;
    font-family: 'Georgia', serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 200px; 
    }

    .hero-content {
        padding: 10px; 
    }

    .hero-content h2 {
        font-size: 1.4rem; 
        font-family: 'Georgia', serif;
    }

    .hero-content p {
        font-size: 0.9rem; 
        font-family: 'Georgia', serif;
    }
}

/* Optional Enhancements for Extra Small Devices */
@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.2rem; 
        font-family: 'Georgia', serif;
    }

    .hero-content p {
        font-size: 0.8rem;
        font-family: 'Georgia', serif;
    }
}

/*Project Page Style Sheet Image Slids  Code Ended Here  */


/* Download Button Started Here */
/* .btn-download {
background-color: #c1ad68; 
color: white;              
border: none;              
padding: 8px 15px;       
text-align: center;       
text-decoration: none;    
display: inline-block;     
font-size: 14px;           
font-family: 'Georgia', serif;
font-weight: bold;         
margin-top: 20px;         
cursor: pointer;           
border-radius: 5px;       
transition: background-color 0.3s; 
}

.btn-download:hover {
background-color: gray; 
} */

/* Download Button  Ended Here */
 

/* Project Page Style Sheet For Projects Drop Down List Start Here */

/* Style for the Filter Section */
.filter-section {
    background-color: white;
    padding: 20px 40px; 
    margin-bottom: 30px;
    border-radius: 8px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

.container {
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 20px; 
    width: 100%; 
    box-sizing: border-box;
}

/* Filter Item Styles */
.filter-item {
    flex: 1;
    margin-right: 10px; 
}

.filter-item:last-child {
    margin-right: 0; 
}

.filter-item label {
    display: block; 
    margin-bottom: 5px; 
    font-weight: bold;
    color: grey;
    font-family: 'Georgia', serif;
    font-size: 14px;
}

.filter-dropdown {
    width: 100%; 
    padding: 10px; 
    border: 1px solid #ccc;
    border-radius: 4px; 
    color: grey;
    font-family: 'Georgia', serif;
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .filter-section {
        padding: 15px 20px; 
    }

    .container {
        padding: 10px; 
    }

    .filter-item {
        flex-basis: 100%; 
        margin-right: 0; 
        margin-bottom: 15px; 
    }

    .filter-item:last-child {
        margin-bottom: 0; 
    }

    .filter-dropdown {
        padding: 8px;
        font-size: 0.9rem; 
        font-family: 'Georgia', serif;
    }

    .filter-item label {
        font-size: 0.9rem;
        font-family: 'Georgia', serif; 
    }
}

/*Project Page Style Sheet For Projects Drop Down List Ended Here */






/* Project Page Style Sheet For Projects Code Start Here */

/* Project List Styles */
.project-list {
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

/* Adjust item width for responsiveness */
.project-item {
    position: relative;
    width: calc(33.33% - 20px);
    padding: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    margin: 10px;
    box-sizing: border-box;
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-item {
        width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .project-item {
        width: 100%;
        margin: 10px 0;
    }

    /* Specifically target the last two items to ensure they are 100% width */
    .container > .project-item:nth-last-child(1),
    .container > .project-item:nth-last-child(2) {
        width: 100%;
    }
}

/* Price Tag Styles */
.price-tag {
    position: absolute;
    top: 20px;
    right: 5px;
    color: white;
    padding: 0px 5px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 5px;
    animation: blink 2.0s infinite;
    transform: rotate(25deg);
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.project-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.project-details {
    padding-top: 15px;
    font-family: 'Georgia', serif;
}

.project-details h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: 'Georgia', serif;
}

.project-details p {
    margin: 5px 0;
    font-size: 14px;
    color: #333;
    font-family: 'Georgia', serif;
}

.project-details .highlight {
    font-weight: bold;
    color: #555;
    font-family: 'Georgia', serif;
}

.project-details .btn {
    display: inline-block;
    padding: 8px 10px;
    background-color: #c1ad68;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
    font-family: 'Georgia', serif;
}

.project-details .btn:hover {
    background-color: grey;
}


.project-details .btn-download {
    display: inline-block;
    padding: 8px 10px;
    background-color: #c1ad68;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
    font-family: 'Georgia', serif;
}

.project-details .btn-download:hover {
    background-color: grey;
}
/* Adjust last two project items for desktop view */
/* .container > .project-item:nth-last-child(-n+2) {
    width: calc(50% - 20px);
} */

/* Adjust last two project items for mobile view (480px and below) */
@media (max-width: 480px) {
    /* Apply 100% width to the last two project items */
    .container > .project-item:nth-last-child(1),
    .container > .project-item:nth-last-child(2) {
        width: 100%; /* Ensure last two items are full width */
    }
}
/* Project Page Style Sheet For Projects Code Ended Here */
