<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Conceptual Design Section */
.conceptual-design {
    background: #0f0f0f;
    position: relative;
    overflow: hidden;
}

.conceptual-text {
    padding: 5rem 3rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(15, 15, 15, 1));
}

.text-wrapper {
    max-width: 550px;
}

.conceptual-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.conceptual-text p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.conceptual-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.conceptual-list li {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: #d3d3d3;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.conceptual-list li:hover {
    color: #ffffff;
    transform: translateX(5px); /* Subtle shift on hover */
}

.conceptual-list li::before {
    content: 'â–¹';
    position: absolute;
    left: 0;
    color: #ffffff;
    font-size: 0.9rem;
}

.conceptual-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    padding: 0.75rem 2rem;
    border-radius: 0;
    border-width: 2px;
    transition: all 0.3s ease;
}

.conceptual-btn:hover {
    background: #ffffff;
    color: #0f0f0f;
    transform: scale(1.05);
}

/* Gallery Styles */
.conceptual-gallery {
    position: relative;
    height: 500px;
}

.gallery-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.conceptual-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
    transform: scale(1.05); /* Slightly zoomed for animation */
}

.conceptual-image.active {
    opacity: 0.9;
    transform: scale(1); /* Normal size when active */
}

.conceptual-image:hover {
    opacity: 1;
}

/* Image Text with Shadow */
.image-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #ffffff;
    text-align: left;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateY(20px); /* Start slightly below */
}

.conceptual-image.active .image-text {
    opacity: 1;
    transform: translateY(0); /* Slide up when active */
}

.image-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); /* Shadow for readability */
}

.image-text p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.gallery-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.gallery-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    border-radius: 50%; /* Circular buttons for modern look */
}

.gallery-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(360deg); /* Spin animation on hover */
}

/* Animations */
.reveal-text {
    opacity: 0;
    transform: translateX(-30px);
    animation: revealText 1s ease forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }

@keyframes revealText {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Decorative Element with Animation */
.conceptual-design::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 1px;
    background: #ffffff;
    opacity: 0;
    transform: rotate(-45deg);
    animation: drawLine 1.5s ease forwards 0.5s; /* Delayed draw effect */
}

@keyframes drawLine {
    from { width: 0; opacity: 0; }
    to { width: 60px; opacity: 0.4; }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .conceptual-text {
        padding: 3rem 1.5rem;
    }

    .conceptual-text h2 {
        font-size: 2.2rem;
    }

    .conceptual-text p {
        font-size: 1rem;
    }

    .conceptual-list li {
        font-size: 0.95rem;
    }

    .conceptual-gallery {
        height: 300px;
    }

    .image-text {
        bottom: 20px;
        left: 20px;
    }

    .image-text h3 {
        font-size: 1.5rem;
    }

    .image-text p {
        font-size: 0.9rem;
    }

    .gallery-controls {
        bottom: 10px;
        right: 10px;
    }

    .gallery-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}</pre></body></html>