        /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #4A4A4A; /* Softer dark gray */
            overflow-x: hidden;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
            box-shadow: 0 2px 20px rgba(0,0,0,0.08); /* Lighter shadow */
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #6C7A89; /* Muted Blue-Gray */
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-link {
            text-decoration: none;
            color: #555555; /* Softer gray */
            font-weight: 500;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        .nav-link:hover {
            color: #8D6E63; /* Warm Brown */
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .bar {
            width: 25px;
            height: 3px;
            background: #555555; /* Softer gray */
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, #FFFACD 0%, #B8E8D9 100%); /* Soft Teal and Green gradient */
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #333; /* Darker text for contrast on light background */
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="rgba(0,0,0,0.05)"/><circle cx="75" cy="75" r="3" fill="rgba(0,0,0,0.03)"/><circle cx="50" cy="10" r="1" fill="rgba(0,0,0,0.05)"/></svg>');
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 2rem;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            opacity: 0;
            animation: fadeInUp 1s ease 0.5s forwards;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0;
            animation: fadeInUp 1s ease 0.7s forwards;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeInUp 1s ease 0.9s forwards;
        }

        .btn {
            padding: 12px 30px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            display: inline-block;
        }

        .btn-primary {
            background: #8D6E63; /* Warm Brown */
            color: white;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .btn-secondary {
            background: transparent;
            color: #4A4A4A; /* Darker text for contrast */
            border: 2px solid #4A4A4A;
        }

        .btn-secondary:hover {
            background: #4A4A4A;
            color: white;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .gallery-container {
            position: relative;
            width: 100%;
            height: 500px; /* This sets the height for desktop */
            overflow: hidden;
            cursor: grab;
        }
        
        /* For mobile */
        @media (max-width: 768px) {
            .gallery-container {
                height: 350px; /* This sets the height for mobile */
            }
        }
        /* Section Styles */
        .section {
            padding: 80px 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: #6C7A89; /* Muted Blue-Gray */
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(45deg, #FFFACD, #8D6E63); /* Blend of warm and cool tones */
        }

        /* Overview Cards */
        .overview-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .overview-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            text-align: center;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .overview-card:hover {
            transform: translateY(-5px);
        }

        .overview-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .card-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #FFFACD, #8D6E63); /* Soft Teal and Warm Brown */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            color: white;
            font-size: 1.5rem;
        }
        /* Photo Gallery Styles */
.photo-gallery {
    margin: 4rem 0;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.gallery-container {
    position: relative;
    width: 100%;
    height: 400px; /* Changed from 500px to 400px for desktop */
    overflow: hidden;
    cursor: grab;
}

.gallery-container:active {
    cursor: grabbing;
}
.gallery-slides {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-slide {
    position: relative;
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-slide:hover img {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-slide:hover .slide-overlay {
    transform: translateY(0);
}

.slide-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #FFFACD;
}

.slide-description {
    font-size: 1rem;
    opacity: 0.9;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: #333;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.gallery-nav.prev {
    left: 20px;
}

.gallery-nav.next {
    right: 20px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: #8D6E63;
    transform: scale(1.2);
}

.gallery-dot:hover {
    background: #6C7A89;
}

/* ... other .gallery-container related styles ... */

/* Responsive adjustments for the gallery container */
@media (max-width: 768px) {
    .gallery-container {
        height: 280px; /* Changed from 350px to 280px for mobile */
    }

    /* ... other responsive gallery styles ... */
}
.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .service-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .service-image {
            height: 200px;
            background: linear-gradient(45deg, #C7B08B, #EEDCBE); /* Soft gold/beige gradient */
            display: flex;
            align-items: center;
            justify-content: center;
            color: #4A4A4A; /* Darker text for contrast */
            font-size: 3rem;
        }

        .service-content {
            padding: 2rem;
        }

        .service-content h3 {
            color: #6C7A89; /* Muted Blue-Gray */
            margin-bottom: 1rem;
        }

        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 5fr;
            gap: 3rem;
            align-items: center;
            margin: 2rem auto 0; /* Centers horizontally with auto margins */
            max-width: 1200px; /* Optional: set a max width for better control */
        }
        
        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
            opacity: 0;
            transform: translateX(-30px);
            transition: all 0.6s ease;
        }
        
        .about-text.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        .about-image {
            height: 400px;
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            opacity: 0;
            transform: translateX(30px);
            transition: all 0.6s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        
        .about-image.visible {
            opacity: 1;
            transform: translateX(0);
        }
        .about-section {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 2rem;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            max-width: 1200px;
            width: 100%;
        }
        /* Add this CSS to your existing stylesheet */

/* Support Us Section Specific Styles */
.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bank-details-card {
    background: white; /* Or a very light subtle color from your palette, e.g., #F8F4EA */
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1); /* Slightly more prominent shadow for important info */
    max-width: 600px; /* Limit width for readability */
    margin: 2rem auto; /* Center the card and add vertical spacing */
    text-align: left; /* Align text within the card */
    border: 1px solid #E0E0D6; /* A subtle border using a light beige */
}

.bank-details-card h3 {
    color: #6C7A89; /* Your muted blue-gray */
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
}

.bank-details-card p {
    color: #4A4A4A; /* Your primary text color */
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.bank-details-card p strong {
    color: #8D6E63; /* Your warm brown accent for labels */
    display: inline-block; /* Helps with consistent spacing if labels are short */
    min-width: 120px; /* Gives labels a minimum width for alignment */
}

.bank-details-card .note {
    font-size: 0.95rem;
    color: #5D5C61; /* Muted dark gray from footer */
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px dashed #E0E0D6; /* Dashed separator for the note */
    text-align: center;
}

/* Responsive adjustments for the bank details card */
@media (max-width: 768px) {
    .bank-details-card {
        padding: 1.5rem;
        margin: 1.5rem 1rem; /* Adjust margin for smaller screens */
    }

    .bank-details-card h3 {
        font-size: 1.5rem;
    }

    .bank-details-card p {
        font-size: 1rem;
    }

    .bank-details-card p strong {
        min-width: unset; /* Remove min-width on small screens */
        display: block; /* Stack label and value */
    }
}

        /* Contact Info */
        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .contact-item {
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .contact-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Section Backgrounds */
        .section:nth-child(even) {
            background: #F8F4EA; /* Soft Off-White/Cream */
        }

        /* Footer */
        .footer {
            background: #5D5C61; /* Muted Dark Gray */
            color: white;
            padding: 3rem 0 1rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: #FFFACD; /* Soft Teal */
        }

        .footer-section a {
            color: #D4C9B7; /* Muted Beige */
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #7B7A81; /* Slightly lighter border */
            color: #B4A999; /* Deeper Beige */
        }

        /* Updated Footer Styles */
        .porygon-solutions {
            text-align: center;
            padding: 1rem 0;
            border-top: 1px solid #7B7A81;
            margin-top: 1rem;
        }

        .porygon-solutions p {
            color: #B4A999;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .porygon-solutions a {
            color: #D4C9B7;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .porygon-solutions a:hover {
            color: #FFFACD;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 1rem;
        }

        .social-link {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #D4C9B7;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            background: rgba(255, 255, 255, 0.05);
        }

        .social-link:hover {
            color: white;
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .social-icon {
            font-size: 1.2rem;
        }
                /* Global Styles */
                * {
                    margin: 0;
                    padding: 0;
                    box-sizing: border-box;
                }
        
                html {
                    scroll-behavior: smooth;
                }
        
                body {
                    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
                    line-height: 1.6;
                    color: #4A4A4A;
                    overflow-x: hidden;
                }
        
                /* Navigation */
                .navbar {
                    position: fixed;
                    top: 0;
                    width: 100%;
                    background: rgba(255, 255, 255, 0.95);
                    backdrop-filter: blur(10px);
                    z-index: 1000;
                    padding: 1rem 0;
                    transition: all 0.3s ease;
                    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
                }
        
                .nav-container {
                    max-width: 1200px;
                    margin: 0 auto;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding: 0 2rem;
                }
        
                .logo {
                    font-size: 1.8rem;
                    font-weight: bold;
                    color: #6C7A89;
                    text-decoration: none;
                }
        
                .nav-menu {
                    display: flex;
                    list-style: none;
                    gap: 2rem;
                }
        
                .nav-link {
                    text-decoration: none;
                    color: #555555;
                    font-weight: 500;
                    transition: color 0.3s ease;
                    cursor: pointer;
                }
        
                .nav-link:hover {
                    color: #8D6E63;
                }
        
                .mobile-menu-toggle {
                    display: none;
                    flex-direction: column;
                    cursor: pointer;
                }
        
                .bar {
                    width: 25px;
                    height: 3px;
                    background: #555555;
                    margin: 3px 0;
                    transition: 0.3s;
                }
        
                /* Section Styles */
                .section {
                    padding: 80px 0;
                }
        
                .container {
                    max-width: 1200px;
                    margin: 0 auto;
                    padding: 0 2rem;
                }
        
                .section-title {
                    text-align: center;
                    font-size: 2.5rem;
                    color: #6C7A89;
                    margin-bottom: 3rem;
                    position: relative;
                }
        
                .section-title::after {
                    content: '';
                    position: absolute;
                    bottom: -10px;
                    left: 50%;
                    transform: translateX(-50%);
                    width: 80px;
                    height: 3px;
                    background: linear-gradient(45deg, #FFFACD, #8D6E63);
                }
        
                /* About Section */
                .about-content {
                    display: block;
                    text-align: center;
                    max-width: 1000px;
                    margin: 2rem auto 0;
                }
        
                .about-text {
                    font-size: 1.1rem;
                    line-height: 1.8;
                    opacity: 1;
                    transform: translateX(0);
                }
        
                .about-text h3 {
                    color: #2c5282;
                    margin-bottom: 1rem;
                }
        
                .about-text p {
                    margin-bottom: 1.5rem;
                    text-align: center;
                }
        
        
                .about-image {
                    height: 400px;
                    background-repeat: no-repeat;
                    background-size: cover;
                    background-position: center;
                    border-radius: 15px;
                    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
                    background-image: url('https://images.unsplash.com/photo-1582213782179-e0d53f98f2ca?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80');
                }
        
                /* Photo Gallery Styles */
                .photo-gallery {
                    margin: 4rem 0;
                    background: #fff;
                    border-radius: 20px;
                    overflow: hidden;
                    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
                }
        
                .gallery-container {
                    position: left;
                    width: 100%;
                    height: 800px;
                    overflow: hidden;
                    cursor: grab;
                }
        
                .gallery-container:active {
                    cursor: grabbing;
                }
        
                .gallery-slides {
                    position: relative;
                    width: 100%;
                    height: 100%;
                    display: flex;
                    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
                }
        
                .gallery-slide {
                    position: relative;
                    min-width: 100%;
                    height: 100%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    background: #f8f9fa;
                }
        
                .gallery-slide img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    transition: transform 0.3s ease;
                }
        
                .gallery-slide:hover img {
                    transform: scale(1.05);
                }
        
                .slide-overlay {
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    right: 0;
                    background: linear-gradient(transparent, rgba(0,0,0,0.8));
                    color: white;
                    padding: 2rem;
                    transform: translateY(100%);
                    transition: transform 0.3s ease;
                }
        
                .gallery-slide:hover .slide-overlay {
                    transform: translateY(0);
                }
        
                .slide-title {
                    font-size: 1.5rem;
                    margin-bottom: 0.5rem;
                    color: #FFFACD;
                }
        
                .slide-description {
                    font-size: 1rem;
                    opacity: 0.9;
                }
        
                .gallery-nav {
                    position: absolute;
                    top: 50%;
                    transform: translateY(-50%);
                    background: rgba(255, 255, 255, 0.9);
                    border: none;
                    width: 50px;
                    height: 50px;
                    border-radius: 50%;
                    cursor: pointer;
                    font-size: 1.2rem;
                    color: #333;
                    transition: all 0.3s ease;
                    z-index: 10;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }
        
                .gallery-nav:hover {
                    background: white;
                    transform: translateY(-50%) scale(1.1);
                    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
                }
        
                .gallery-nav.prev {
                    left: 20px;
                }
        
                .gallery-nav.next {
                    right: 20px;
                }
        
                .gallery-dots {
                    display: flex;
                    justify-content: center;
                    gap: 0.5rem;
                    padding: 1.5rem;
                    background: #f8f9fa;
                }
        
                .gallery-dot {
                    width: 12px;
                    height: 12px;
                    border-radius: 50%;
                    background: #ccc;
                    cursor: pointer;
                    transition: all 0.3s ease;
                }
        
                .gallery-dot.active {
                    background: #8D6E63;
                    transform: scale(1.2);
                }
        
                .gallery-dot:hover {
                    background: #6C7A89;
                }
        
                /* Section Backgrounds */
                .section:nth-child(even) {
                    background: #F8F4EA;
                }

        /* Responsive Design */
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background-color: white;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0,0,0,0.05);
                padding: 2rem 0;
            }

            .nav-menu.active {
                left: 0;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .overview-grid {
                grid-template-columns: 1fr;
            }

            .social-links {
                flex-direction: column;
                gap: 1rem;
                align-items: center;
            }
            .nav-menu.active {
                left: 0;
            }
        
            .about-content {
                grid-template-columns: 1fr;
            }
        
            .gallery-container {
                height: 500px;
            }
        
            .gallery-nav {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        
            .gallery-nav.prev {
                left: 10px;
            }
        
            .gallery-nav.next {
                right: 10px;
            }
        
            .slide-overlay {
                padding: 1rem;
            }
        
            .slide-title {
                font-size: 1.2rem;
            }
        
            .slide-description {
                font-size: 0.9rem;
            }
        
        }

        /* Scroll Animation Delays */
        .overview-card:nth-child(1) { transition-delay: 0.1s; }
        .overview-card:nth-child(2) { transition-delay: 0.2s; }
        .overview-card:nth-child(3) { transition-delay: 0.3s; }
        .overview-card:nth-child(4) { transition-delay: 0.4s; }

        .service-card:nth-child(1) { transition-delay: 0.1s; }
        .service-card:nth-child(2) { transition-delay: 0.2s; }
        .service-card:nth-child(3) { transition-delay: 0.3s; }

        .contact-item:nth-child(1) { transition-delay: 0.1s; }
        .contact-item:nth-child(2) { transition-delay: 0.2s; }
        .contact-item:nth-child(3) { transition-delay: 0.3s; }