/* Splash Page About Us Styling */

.splash-content .about-features {
    max-width: 800px; /* Widened from 600px */
    margin: 0 auto;
    text-align: left;
}

.splash-content .about-features ul {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem 2.5rem; /* Increased padding */
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: visible; /* Allow icons to show fully */
}

/* Services list specific styling */
.splash-content .services-list .service-item {
    color: #ffffff;
    overflow: visible; /* Allow icons to show fully */
}

.splash-content .services-list .service-item.border-bottom {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.splash-content .services-list .service-item .d-flex {
    overflow: visible; /* Allow icons to show fully */
}

.splash-content .services-list .service-icon {
    width: 50px;
    flex-shrink: 0;
    margin-right: 1rem;
    margin-left: -5px;
    display: flex;
    align-items: flex-start; /* Align to top */
    justify-content: flex-start;
    overflow: visible;
    padding-top: 0.25rem; /* Align with text */
}

/* Colorful icons - using filter for better compatibility */
.splash-content .services-list .service-item:nth-child(1) .service-icon i {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
}

.splash-content .services-list .service-item:nth-child(2) .service-icon i {
    background: linear-gradient(135deg, #32CD32 0%, #228B22 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
}

.splash-content .services-list .service-item:nth-child(3) .service-icon i {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
}

.splash-content .services-list .service-item:nth-child(4) .service-icon i {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.4rem;
}

.splash-content .services-list .service-content {
    flex: 1;
}

.splash-content .services-list .service-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.splash-content .services-list .service-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #ffffff;
}

/* About Us description - same style as service description */
.splash-content .about-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #ffffff;
}

/* Sticky Explore Button */
/* For all splash pages - sticky within the scroll container */
.splash-page .splash-content .sticky-explore-btn {
    position: sticky;
    bottom: -25px;
    text-align: center;
    margin-top: 2rem;
    z-index: 1000;
}

/* About Us box styling - same as services */
.splash-content .about-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Projects Gallery Styling */
.splash-content .projects-gallery {
    max-height: none;
}

.splash-content .project-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.splash-content .project-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.splash-content .project-item:hover {
    transform: scale(1.02);
}

.splash-content .project-img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.splash-content .project-caption {
    padding: 0.75rem;
    text-align: center;
    font-size: 0.9rem;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

/* About Us section - pure white text */
.splash-content .col-md-6 .lead {
    color: #ffffff !important;
}

/* All text in splash should be white - NO black outline */
.splash-content p,
.splash-content .lead {
    color: #ffffff;
}

.splash-content h3 {
    color: #ffffff;
}

/* Old feature list styling (for other uses) */
.splash-content .about-features li {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.splash-content .about-features li:last-child {
    margin-bottom: 0;
}

.splash-content .about-features i {
    font-size: 1.3rem;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

/* Justified text for About Us and Services */
.text-justify {
    text-align: justify;
    text-justify: inter-word;
}

/* Two column layout for About/Projects */
.splash-content .row {
    max-width: 100%;
}

.splash-content .col-md-6 {
    text-align: left;
}

/* Subtitle styling for Salenga Farm */
.splash-content .fw-bold {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #fff;
}

/* Description text */
.splash-content .lead {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .splash-content .about-features {
        max-width: 100%;
    }
    
    .splash-content .about-features ul {
        padding: 1.5rem 1.5rem;
    }
    
    .splash-content .services-list .service-title {
        font-size: 1rem;
    }
    
    .splash-content .services-list .service-description {
        font-size: 0.9rem;
        padding-left: 1.5rem;
    }
    
    .splash-content .about-features li {
        font-size: 1rem;
        gap: 0.5rem;
    }
    
    .splash-content .about-features i {
        font-size: 1.1rem;
        width: 20px;
    }
    
    .splash-content .lead {
        font-size: 1rem;
    }
    
    .splash-content .display-4 {
        font-size: 2rem;
    }
    
    .splash-content .col-md-6 {
        margin-bottom: 1rem;
    }
}
