/* index-style.css — page-specific styles */
/* ── Hero Service Cards ── */
 .hero-service-icon,
        .inclusion-icon,
        .footer-contact-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .hero-service-icon i,
        .inclusion-icon i {
            width: 42px;
            height: 42px;
            stroke-width: 1.8;
            color: #33cccc;
            filter: drop-shadow(0 0 12px rgba(51, 204, 204, 0.28));
            transition: transform 0.3s ease, color 0.3s ease, filter 0.3s ease;
        }

        .hero-service-card:hover .hero-service-icon i,
        .inclusion-card:hover .inclusion-icon i {
            color: #ffffff;
            transform: translateY(-2px) scale(1.08);
            filter: drop-shadow(0 0 18px rgba(51, 204, 204, 0.48));
        }

        .footer-contact-icon i {
            width: 18px;
            height: 18px;
            stroke-width: 2;
            color: #33cccc;
            vertical-align: middle;
            margin-right: 6px;
        }
		
        .hero-service-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            margin: 2rem 0 1.5rem;
            width: 100%;
        }
        .hero-service-card {
            padding: 1.4rem 1.2rem 1.2rem;
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .hero-service-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.25);
        }
        .hero-service-icon {
            font-size: 1.8rem;
            line-height: 1;
            margin-bottom: 0.3rem;
        }
        .hero-service-card h4 {
            font-size: 0.9rem;
            font-weight: 700;
            color: #fff;
            margin: 0;
            line-height: 1.3;
        }
        .hero-service-card p {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.72);
            margin: 0;
            line-height: 1.5;
            flex: 1;
        }
        .hero-service-learn {
            font-size: 0.82rem;
            font-weight: 600;
            color: #00c6ff;
            text-decoration: none;
            transition: color 0.2s ease;
            margin-top: 0.3rem;
        }
        .hero-service-learn:hover { color: #fff; }

        @media (max-width: 900px) {
            .hero-service-cards { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 540px) {
            .hero-service-cards { grid-template-columns: 1fr 1fr; gap: 0.7rem; }
            .hero-service-card { padding: 1rem; }
        }
    

        /* Performance tuning */
        .hero-service-card,
        .inclusion-card,
        .process-card {
            box-shadow: 0 8px 22px rgba(0,0,0,0.18);
        }

        .hero-service-card:hover {
            box-shadow: 0 10px 24px rgba(0,0,0,0.2);
        }

        main > section {
            content-visibility: auto;
            contain-intrinsic-size: 900px;
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation: none !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }
		
		