/* Custom styles to complement Tailwind */
.service-logo, .product-logo {
    height: 80px;
    width: 80px;
    object-fit: cover;
    border-radius: 50%; /* Circular shape for logos */
}

@media (min-width: 768px) {
    .service-logo, .product-logo {
        height: 100px;
        width: 100px;
    }
}

.about img {
    max-width: 100%;
    height: auto;
}

.hero {
    background-attachment: fixed; /* Enables parallax effect */
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.contact-icon {
    display: inline-block;
    text-align: center;
    transition: transform 0.3s ease, color 0.3s ease;
}

.contact-icon:hover {
    transform: scale(1.2); /* Scale up on hover */
    color: #F97316; /* Orange color on hover */
}

.logo-text {
    color: white;
    font-family: 'Poppins', sans-serif;
}

.mobile-nav {
    display: none;
}

.mobile-nav.active {
    display: flex;
}

.hamburger {
    color: white;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        background-attachment: scroll; /* Disable parallax on mobile for performance */
    }

    .contact-icon {
        margin-bottom: 1rem;
    }
}