/* Enhanced Project Section Styles */
.recent-project__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(144, 110, 80, 0.8), rgba(144, 110, 80, 0.6));
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.recent-project__item:hover .recent-project__overlay {
    opacity: 1;
}

.recent-project__content {
    text-align: center;
}

.recent-project__title {

    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.recent-project__location {
    color: #666;
;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.recent-project__location i {
    margin-right: 8px;
    color: #906E50;
}

.recent-project__features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: #f8f9fa;
    color: #906E50;
    padding: 4px 12px;
    border-radius: 15px;
   
    font-weight: 500;
    border: 1px solid #e9ecef;
}

.recent-project__link {
    color: #906E50;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.recent-project__link:hover {
    color: #7a5a43;
    text-decoration: none;
}

.recent-project__link svg {
    transition: transform 0.3s ease;
}

.recent-project__link:hover svg {
    transform: translateX(5px);
}

.projects-cta {
    background: linear-gradient(135deg, #ffae50 0%, #ff8a00 100%);
    padding: 50px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.projects-cta h5 {
    color: #333;

    font-weight: 600;
}

.projects-cta p {
    color: #666;

}

.section__description {
    color: #666;
   
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Mobile Responsive Improvements for Projects */
@media (max-width: 768px) {
    .recent-project__item {
        margin-bottom: 40px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .recent-project__media {
        height: 250px;
        overflow: hidden;
        border-radius: 10px;
    }
    
    .recent-project__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .recent-project__text {
        padding: 25px 20px;
        background: white;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .recent-project__title {
      
        text-align: center;
        margin-bottom: 15px;
    }
    
    .recent-project__location {
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .recent-project__features {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .recent-project__link {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 12px 20px;
        background: #906E50;
        color: white !important;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .recent-project__link:hover {
        background: #7a5a43;
        color: white !important;
        transform: translateY(-2px);
    }
    
    .recent-project__link svg path {
        stroke: white;
    }
    
    .projects-cta {
        padding: 40px 20px;
        margin-top: 30px;
    }
    
    .projects-cta h5 {
     
    }
    
    .projects-cta p {
        
    }
}

@media (max-width: 576px) {
    .recent-project__features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-tag {
        margin-bottom: 5px;
    }
    
    .section__description {

        padding: 0 15px;
    }
}

/* Enhanced hover effects for desktop */
@media (min-width: 769px) {
    .recent-project__item {
        transition: all 0.3s ease;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    .recent-project__item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }
    
    .recent-project__media {
        position: relative;
        overflow: hidden;
    }
    
    .recent-project__text {
        padding: 30px 25px;
        background: white;
    }
}

/* Enhanced Amenities Section Styles */
.amenities-section {
    position: relative;
    overflow: hidden;
}

.amenities-section .section__title {
    font-size: 3rem !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
}

.amenities-section .section__subtitle {
    font-size: 1.2rem !important;
    font-weight: 500 !important;
}

.amenities-section .section__description {
    font-size: 1.2rem !important;
    line-height: 1.7 !important;
    color: #666 !important;
}

.amenity-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    position: relative;
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.amenity-card__media {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.amenity-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.amenity-card:hover .amenity-card__media img {
    transform: scale(1.1);
}

.amenity-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(144, 110, 80, 0.9), rgba(144, 110, 80, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.amenity-card:hover .amenity-card__overlay {
    opacity: 1;
}

.amenity-card__icon {
    background: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  
    color: #906E50;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.amenity-card:hover .amenity-card__icon {
    transform: scale(1);
}

.amenity-card__content {
    padding: 25px 20px;
}

.amenity-card__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.amenity-card__description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 18px;
}

.amenity-card__features {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.feature-badge {
    background: linear-gradient(135deg, #906E50, #7a5a43);
    color: white;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Amenities Highlights Section */
.amenities-highlights {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

.amenities-highlights__content h3 {
    color: #333;
    font-weight: 600;
    font-size: 2.5rem;
}

.amenities-features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.feature-icon {
    background: linear-gradient(135deg, #906E50, #7a5a43);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-text h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.feature-text p {
    color: #666;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Amenities Stats */
.amenities-stats {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 30px 20px;
}

.stat-item {
    padding: 20px 10px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #906E50;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Responsive for Amenities */
@media (max-width: 768px) {
    .amenities-section .section__title {
        font-size: 2.2rem !important;
    }
    
    .amenities-section .section__subtitle {
        font-size: 1.1rem !important;
    }
    
    .amenities-section .section__description {
        font-size: 1.1rem !important;
    }
    
    .amenity-card__media {
        height: 180px;
    }
    
    .amenity-card__content {
        padding: 20px 15px;
    }
    
    .amenity-card__title {
        font-size: 1.3rem;
    }
    
    .amenity-card__description {
        font-size: 1rem;
    }
    
    .amenities-highlights {
        padding: 30px 20px;
        margin-top: 30px;
    }
    
    .amenities-highlights__content h3 {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .feature-icon {
        margin: 0 auto;
    }
    
    .amenities-stats {
        margin-top: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .amenity-card {
        margin-bottom: 25px;
    }
    
    .amenity-card__media {
        height: 160px;
    }
    
    .amenity-card__features {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .feature-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
    
    .amenities-highlights {
        padding: 25px 15px;
    }
    
    .stat-item {
        padding: 15px 5px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

/* Animation for amenity cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.amenity-card {
    animation: fadeInUp 0.6s ease forwards;
}

.amenity-card:nth-child(1) { animation-delay: 0.1s; }
.amenity-card:nth-child(2) { animation-delay: 0.2s; }
.amenity-card:nth-child(3) { animation-delay: 0.3s; }
.amenity-card:nth-child(4) { animation-delay: 0.4s; }
.amenity-card:nth-child(5) { animation-delay: 0.5s; }
.amenity-card:nth-child(6) { animation-delay: 0.6s; }
.amenity-card:nth-child(7) { animation-delay: 0.7s; }
.amenity-card:nth-child(8) { animation-delay: 0.8s; }

/* Hover effect for feature badges */
.feature-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(144, 110, 80, 0.3);
}

/* Gradient background for section */
.amenities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    z-index: -1;
}
/* Vision & Mission Section Styles */
.vision-mission-section {
    position: relative;
    overflow: hidden;
}

.vision-mission-section .section__title {
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 25px !important;
}

.vision-mission-section .section__subtitle {
    font-size: 1.4rem !important;
    font-weight: 500 !important;
    color: #906E50 !important;
}

.vision-mission-section .section__description {
    font-size: 1.45rem !important;
    line-height: 1.7 !important;
    color: #666 !important;
}

.vision-mission-card {
    background: white;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.vision-mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #906E50, #7a5a43);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.vision-mission-card:hover::before {
    transform: scaleX(1);
}

.vision-mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.vision-card {
    border-left: 4px solid #906E50;
}

.mission-card {
    border-left: 4px solid #7a5a43;
}

.vision-mission-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.vision-mission-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin-right: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.vision-icon {
    background: linear-gradient(135deg, #906E50, #7a5a43);
}

.mission-icon {
    background: linear-gradient(135deg, #7a5a43, #906E50);
}

.vision-mission-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.vision-mission-content {
    padding-left: 90px;
}

.vision-mission-text {
    font-size: 1.45rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.vision-mission-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.45rem;
    color: #555;
    font-weight: 500;
}

.feature-point i {
    color: #906E50;
    font-size: 18px;
}

/* Company Values Section */
.company-values-section {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.values-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

.values-description {
    font-size: 1.45rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.value-icon {
    background: linear-gradient(135deg, #906E50, #7a5a43);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.value-content h6 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.value-content p {
    font-size: 1.45rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Company Stats */
.company-stats-wrapper {
    background: linear-gradient(135deg, #906E50, #7a5a43);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(144, 110, 80, 0.3);
}

.stat-box {
    padding: 20px 15px;
}

.stat-box .stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-box .stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.45rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Responsive for Vision & Mission */
@media (max-width: 768px) {
    .vision-mission-section .section__title {
        font-size: 2.5rem !important;
    }
    
    .vision-mission-section .section__subtitle {
        font-size: 1.2rem !important;
    }
    
    .vision-mission-section .section__description {
        font-size: 1.45rem !important;
    }
    
    .vision-mission-card {
        padding: 35px 30px;
        margin-bottom: 35px;
    }
    
    .vision-mission-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .vision-mission-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .vision-mission-title {
        font-size: 2.2rem;
    }
    
    .vision-mission-content {
        padding-left: 0;
        text-align: center;
    }
    
    .vision-mission-text {
        font-size: 1.45rem;
    }
    
    .feature-point {
        font-size: 1.45rem;
        justify-content: center;
    }
    
    .company-values-section {
        padding: 45px 30px;
    }
    
    .values-title {
        font-size: 2.3rem;
        text-align: center;
    }
    
    .values-description {
        text-align: center;
        margin-bottom: 35px;
        font-size: 1.45rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .company-stats-wrapper {
        padding: 35px 25px;
    }
    
    .stat-box .stat-number {
        font-size: 3rem;
    }
    
    .stat-box .stat-label {
        font-size: 1.45rem;
    }
}

@media (max-width: 576px) {
    .vision-mission-section .section__title {
        font-size: 2rem !important;
    }
    
    .vision-mission-card {
        padding: 30px 25px;
    }
    
    .vision-mission-title {
        font-size: 1.8rem;
    }
    
    .vision-mission-text {
        font-size: 1.45rem;
    }
    
    .feature-point {
        font-size: 1.45rem;
    }
    
    .values-title {
        font-size: 2rem;
    }
    
    .values-description {
        font-size: 1.45rem;
    }
    
    .value-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .value-content h6 {
        font-size: 1.6rem;
    }
    
    .value-content p {
        font-size: 1.45rem;
    }
    
    .stat-box {
        padding: 20px 15px;
    }
    
    .stat-box .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-box .stat-label {
        font-size: 1.45rem;
    }
}

/* Animation for Vision & Mission cards */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.vision-card {
    animation: slideInLeft 0.8s ease forwards;
}

.mission-card {
    animation: slideInRight 0.8s ease forwards;
    animation-delay: 0.2s;
}

/* Hover effects for stats */
.stat-box:hover .stat-number {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.stat-box:hover .stat-label {
    color: white;
    transition: color 0.3s ease;
}