/* Component-specific styles extracted from inline CSS */

/* Spinner Component */
.spinner-border.spinner-custom {
    width: 3rem;
    height: 3rem;
}

/* Logo Component */
.navbar-logo {
    max-height: 70px;
}

/* Carousel Images */
.carousel-image {
    height: 100vh;
    object-fit: cover;
}

/* Feature Cards */
.feature-card {
    min-height: 160px;
}

.feature-icon {
    font-size: 18px;
}

/* Service Cards */
.service-card {
    box-shadow: 0 0 45px rgba(0,0,0,.08);
}

.service-icon-container {
    width: 90px;
    height: 90px;
}

/* Project Gallery Images */
.project-image {
    width: 100%;
    object-fit: cover;
}

/* Hidden Gallery Links */
.gallery-hidden {
    display: none;
}

/* Load More Projects Functionality */
.project-item.hidden-initially {
    display: none;
}

.project-item.hidden-initially.show {
    display: block;
}

/* Container Constraints */
.container-constrained {
    max-width: 500px;
}

/* Footer Background */
.footer-container {
    position: relative;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background-image: url('../img/tree.webp');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.5;
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
}

/* Contact Form */
.contact-container {
    min-height: 450px;
}

.contact-map {
    border: 0;
}

.contact-textarea {
    height: 100px;
}

/* Mobile Image Responsive */
.mobile-small-img {
    max-width: 100%;
}

@media (max-width: 767.98px) {
    .mobile-small-img {
        max-width: 40%;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
} 