<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">  /* General Body &amp; Typography - Consistent with existing design */
        body {
            font-family: 'Syne', sans-serif;
            background-color: #F8F8F8; /* Main page background */
            color: #2C2C2C; /* Primary text color */
            line-height: 1.6;
            scroll-behavior: smooth; /* Smooth scrolling for anchor links */
            overflow-x: hidden; /* Prevent horizontal scroll */
        }
        h1, h2, h3, h4 {
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            color: #2C2C2C; /* Heading text color */
        }
        h1 { font-weight: 800; }

        /* Reusable padding for sections */
        .section-padding {
            padding: 80px 0;
        }

        /* Hero Section Specific Styles - Modern gradient background with abstract patterns */
        .hero-section {
            background: linear-gradient(135deg, #FF6600, #FF3300); /* Orange gradient */
            color: white;
            padding: 120px 0 100px;
            text-align: center;
            border-bottom-left-radius: 50px;
            border-bottom-right-radius: 50px;
            box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
            position: relative;
            overflow: hidden;
        }
        /* Abstract background patterns for the hero section */
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 10% 20%, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 30%),
                radial-gradient(circle at 90% 80%, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 40%);
            background-size: 80px 80px;
            z-index: 0;
        }
        /* Content wrapper to ensure content is above background patterns */
        .hero-content-wrapper {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 20px;
        }

        .hero-title {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
        }
        .hero-subtitle {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
            font-weight: 500;
        }
        /* Call to action button styling */
        .hero-cta-button {
            background-color: #FFFFFF;
            color: #FF6600;
            padding: 1rem 2.5rem;
            border-radius: 9999px; /* Pill shape */
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: all 0.3s ease-in-out;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            display: inline-block; /* Allows padding and margin properties */
        }
        .hero-cta-button:hover {
            transform: translateY(-5px) scale(1.02); /* Subtle lift and scale on hover */
            box-shadow: 0 12px 25px rgba(0,0,0,0.15);
        }
        .just-dial-rating {
            font-size: 1.15rem;
            font-weight: 600;
            color: white;
            margin-top: 1.5rem;
            margin-bottom: 2.5rem;
        }
        .just-dial-rating strong {
            color: #FFFAEC; /* Slightly lighter orange for emphasis */
        }

        /* Generic shared styling for sections */
        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 1.5rem;
            color: #2C2C2C;
            text-wrap: balance; /* Helps with better line breaking for titles */
            padding: 0 1rem; /* Default padding for titles */
        }
        .section-description {
            font-size: 1.15rem;
            color: #6B6B6B;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
            line-height: 1.8;
        }
        .item-icon-circle { /* Common circular icon wrapper style, if needed */
            background-color: #FFF5EE; /* Light orange background */
            border-radius: 50%;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: #FF6600;
            box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
            transition: all 0.3s ease-in-out;
        }
        .item-icon { /* Just the icon inside the wrapper */
            font-size: 3rem;
            line-height: 1;
            color: #FF6600;
            transition: transform 0.3s ease-in-out;
        }
        .item-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2C2C2C;
            margin-bottom: 0.5rem;
        }
        .item-description {
            font-size: 0.95rem;
            color: #6B6B6B;
            overflow-wrap: break-word; /* Ensure long words break */
            word-break: break-word;
            line-height: 1.6;
        }
        .content-block-base { /* Base styling for content cards */
            background-color: #FFFFFF;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            border: 1px solid #E0E0E0;
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border-color 0.3s ease-in-out;
        }


        /* Why Pengwin Excels Section - Card specific styles */
        #why-pengwin-excels .section-container {
            position: relative;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive grid */
            gap: 2rem;
            margin-top: 3rem;
        }
        .why-excel-card {
            background: linear-gradient(145deg, #FDFDFD, #FFFFFF); /* Subtle gradient for card background */
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
            border: 1px solid #E0E0E0;
            position: relative;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smooth transition for hover effects */
            cursor: pointer;
            text-align: center;
            z-index: 1;
        }
        .why-excel-card:hover {
            transform: translateY(-15px) scale(1.03); /* Lift and enlarge on hover */
            box-shadow: 0 20px 40px rgba(0,0,0,0.2), 0 0 0 5px rgba(255, 102, 0, 0.4); /* Enhanced shadow and orange border */
            border-color: #FF6600;
            z-index: 2; /* Bring hovered card to front */
        }
        .why-excel-card .item-icon {
            font-size: 4rem;
            color: #FF6600;
            margin-bottom: 1.5rem;
        }
        .why-excel-card .item-title {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        /* Our Web Development Expertise Section - NEW UI for clickable/hoverable cards */
        #web-expertise .section-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            background-color: #FDFDFD;
            padding: 3rem 2rem;
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
        }
        .web-expertise-card {
            background-color: #FFFFFF;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            border: 1px solid #E0E0E0;
            transition: all 0.3s ease-in-out;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        /* Orange line animation on top of expertise cards */
        .web-expertise-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px; /* Thin orange line at top */
            background-color: #FF6600;
            transform: scaleX(0); /* Hidden initially */
            transform-origin: left; /* Expand from left */
            transition: transform 0.3s ease-in-out;
        }
        .web-expertise-card:hover {
            transform: translateY(-10px) scale(1.02); /* Lift and slightly enlarge */
            box-shadow: 0 10px 30px rgba(255, 102, 0, 0.2); /* Orange tinted shadow */
            border-color: #FF6600;
        }
        .web-expertise-card:hover::before {
            transform: scaleX(1); /* Reveal orange line on hover */
        }
        .web-expertise-card .item-icon {
            font-size: 3.5rem;
            color: #FF6600;
            margin-bottom: 1rem;
        }
        .web-expertise-card .item-title {
            font-size: 1.6rem;
            margin-bottom: 0.75rem;
        }
        .web-expertise-card .item-description {
            font-size: 0.9rem;
            color: #6B6B6B;
            line-height: 1.6;
        }
        /* Display panel for expertise details (hidden on small screens) */
        .web-expertise-details-display {
            margin-top: 2rem;
            padding: 1.5rem;
            background-color: #FFF;
            border-radius: 10px;
            border: 1px solid #FF9900; /* Light orange border */
            box-shadow: 0 2px 10px rgba(255,102,0,0.1);
            text-align: left;
            min-height: 120px; /* Ensure consistent height */
        }


        /* The Web Development Process Section - Numbered steps with large icons */
        #web-development-process .section-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        .web-process-step-card {
            background-color: #FFFFFF;
            border-radius: 15px;
            padding: 2.5rem 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid #E0E0E0;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .web-process-step-card:hover {
            transform: translateY(-8px) scale(1.01);
            box-shadow: 0 10px 25px rgba(255, 102, 0, 0.15); /* Orange tinted shadow on hover */
            border-color: #FF9900;
        }
        /* Large step number as a background element */
        .web-process-step-card-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #FFDAB9; /* Very light orange for subtle background */
            position: absolute;
            top: 1rem;
            right: 1rem;
            z-index: 0;
            line-height: 1;
            transition: all 0.3s ease;
        }
        .web-process-step-card:hover .web-process-step-card-number {
            color: #FF9900; /* Darker orange on hover */
        }
        .web-process-step-icon-large {
            font-size: 4rem;
            color: #FF6600;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1; /* Icon above number */
        }
        .web-process-step-title-bold {
            font-size: 1.6rem;
            font-weight: 700;
            color: #2C2C2C;
            margin-bottom: 0.75rem;
            position: relative;
            z-index: 1;
        }
        .web-process-step-description-small {
            font-size: 0.9rem;
            color: #6B6B6B;
            position: relative;
            z-index: 1;
        }
        
        /* Our Web Technology Stack Section - Accordion styling */
        #web-tech-stack .section-container {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 3rem;
        }
        .tech-accordion-item {
            background-color: #FDFDFD;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 1px solid #E0E0E0;
            overflow: hidden; /* Hide content when closed */
        }
        .tech-accordion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 2rem;
            cursor: pointer;
            font-size: 1.75rem;
            font-weight: 600;
            color: #2C2C2C;
            background-color: #FFF;
            transition: all 0.3s ease-in-out;
        }
        .tech-accordion-header:hover {
            background-color: #FFF5EE; /* Light orange background on hover */
            color: #FF6600;
        }
        .tech-accordion-header.active {
            background-color: #FF6600; /* Active state orange background */
            color: white;
        }
        .tech-accordion-header .toggle-icon {
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }
        .tech-accordion-header.active .toggle-icon {
            transform: rotate(180deg); /* Rotate icon when active */
        }
        .tech-accordion-content {
            padding: 0 2rem 2rem;
            max-height: 0; /* Hidden by default */
            overflow: hidden;
            transition: max-height 0.4s ease-out, padding 0.4s ease-out; /* Smooth slide transition */
        }
        .tech-accordion-content.open {
            max-height: 500px; /* Sufficient height to show content */
            padding-top: 1.5rem;
        }
        /* Grid for technology sub-items within accordion */
        .tech-accordion-items-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 1.5rem;
        }
        .tech-accordion-sub-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 1rem;
            background-color: #F8F8F8;
            border-radius: 10px;
            border: 1px solid #DEDEDE;
            cursor: pointer;
            transition: all 0.2s ease-in-out;
            min-height: 100px; /* Ensure consistent card height */
        }
        .tech-accordion-sub-item:hover {
            transform: translateY(-3px); /* Subtle lift */
            box-shadow: 0 3px 10px rgba(255, 102, 0, 0.1); /* Orange tinted shadow */
            border-color: #FF9900;
        }
        .tech-accordion-sub-icon {
            font-size: 2.5rem;
            color: #FF6600;
            margin-bottom: 0.5rem;
        }
        .tech-accordion-sub-label {
            font-size: 0.85rem;
            font-weight: 600;
            color: #2C2C2C;
        }
        /* Panel to display details of selected technology */
        .tech-accordion-details-display {
            margin-top: 2rem;
            padding: 1.5rem;
            background-color: #FFF;
            border-radius: 10px;
            border: 1px solid #FF9900;
            box-shadow: 0 2px 10px rgba(255,102,0,0.1);
            text-align: left;
            min-height: 150px;
        }
        .tech-accordion-details-display h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2C2C2C;
            margin-bottom: 0.75rem;
        }
        .tech-accordion-details-display p {
            font-size: 0.9rem;
            color: #6B6B6B;
        }


        /* Web Industry Solutions Section - Blocks with icons and text */
        #web-industry-solutions .section-container {
            margin-top: 3rem;
            background-color: #FDFDFD;
            border-radius: 20px;
            padding: 3rem 2rem;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            display: grid;
            gap: 2rem;
        }
        .web-industry-solution-block {
            display: flex;
            align-items: center;
            gap: 2rem;
            padding: 1.5rem;
            background-color: #FFFFFF;
            border-radius: 15px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            border: 1px solid #E0E0E0;
            transition: all 0.3s ease-in-out;
        }
        .web-industry-solution-block:hover {
            transform: translateY(-5px) scale(1.01);
            box-shadow: 0 6px 15px rgba(255, 102, 0, 0.1); /* Orange tinted shadow on hover */
            border-color: #FF6600;
        }
        .web-industry-icon-large {
            font-size: 4rem;
            color: #FF6600;
            flex-shrink: 0; /* Prevent icon from shrinking */
        }
        .web-industry-text-content {
            flex-grow: 1;
        }
        .web-industry-text-content h3 {
            font-size: 1.75rem;
            margin-bottom: 0.75rem;
            color: #2C2C2C;
        }
        .web-industry-text-content p {
            font-size: 1rem;
            color: #6B6B6B;
        }


        /* Success Stories Section - Testimonial Carousel */
        #web-success-stories {
            background-color: #F8F8F8;
        }
        .testimonial-carousel-container {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            overflow: hidden; /* Hide overflowing testimonials */
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            background-color: #FDFDFD;
            padding: 2.5rem 0;
            border: 1px solid #E0E0E0;
        }
        .testimonial-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smooth slide animation */
            padding: 0 2.5rem; /* Space for partial next/prev testimonial */
        }
        .testimonial-item {
            flex-shrink: 0; /* Prevent items from shrinking */
            width: 100%; /* Each item takes full width of container */
            padding: 1.5rem;
            text-align: center;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            border: 1px solid #DEDEDE;
            margin: 0 0.5rem; /* Small gap between items (within the overflow) */
        }
        .testimonial-text {
            font-size: 1.15rem;
            font-style: italic;
            color: #2C2C2C;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }
        .testimonial-author {
            font-weight: 700;
            font-size: 1.1rem;
            color: #FF6600;
        }
        .testimonial-title-meta {
            font-size: 0.95rem;
            color: #6B6B6B;
        }
        .carousel-dots {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
            z-index: 10;
            position: relative;
        }
        .dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background-color: #DEDEDE;
            margin: 0 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        .dot.active {
            background-color: #FF6600;
            border-color: #FFF5EE; /* Light border around active dot */
            box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.2); /* Glow effect for active dot */
        }

        /* Footer - Call to action section */
        .footer-cta-section {
            background-color: #F8F8F8;
            border-top: 1px solid #E0E0E0;
        }
        /* Highlight text color for emphasis */
        .highlight-text {
            color: #FF6600;
            font-weight: 700;
        }
        /* Utility class for white text, used for hero section text */
        .text-white {
            color: white;
        }


        /* Responsive adjustments for smaller screens (max-width: 767px) */
        @media (max-width: 767px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-subtitle {
                font-size: 1.25rem;
            }
            .section-padding {
                padding: 60px 0;
            }
            /* Main section titles FIX */
            .section-title {
                font-size: 1.8rem; /* Adjusted down from 2rem */
                line-height: 1.2;
                margin-bottom: 1rem; /* Reduced margin */
                padding: 0 0.5rem; /* Reduced horizontal padding for very narrow screens */
            }
            .section-description {
                font-size: 1rem;
                margin-bottom: 2rem;
            }
            /* Why Pengwin Excels adjustments */
            #why-pengwin-excels .section-container {
                grid-template-columns: 1fr; /* Stack cards vertically */
                gap: 1.5rem;
                padding: 1.5rem;
            }
            .why-excel-card {
                padding: 1.5rem;
            }
            .why-excel-card .item-icon {
                font-size: 3rem;
                margin-bottom: 1rem;
            }
            .why-excel-card .item-title {
                font-size: 1.4rem;
            }
            .why-excel-card .item-description {
                font-size: 0.9rem;
            }

            /* Our Web Development Expertise adjustments */
            #web-expertise .section-container {
                grid-template-columns: 1fr; /* Stack on mobile */
                gap: 1.5rem;
                padding: 1.5rem;
            }
            .web-expertise-card {
                padding: 1.5rem;
                border: 1px solid #E0E0E0; /* Keep border visible */
                box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* Subtle shadow */
            }
            .web-expertise-card:hover { /* Mobile hover subtle */
                transform: translateY(-5px) scale(1.02);
                box-shadow: 0 4px 15px rgba(255, 102, 0, 0.1);
                border-color: #FF9900;
            }
            .web-expertise-card .item-icon {
                font-size: 3rem;
                margin-bottom: 0.75rem;
            }
            .web-expertise-card .item-title {
                font-size: 1.2rem;
            }
            .web-expertise-card .item-description {
                font-size: 0.85rem;
            }
            .web-expertise-details-display { /* Mobile hides this for space */
                display: none;
            }

            /* The Web Development Process adjustments */
            #web-development-process .section-container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 2rem 1.5rem;
            }
            .web-process-step-card {
                padding: 2rem 1.5rem;
            }
            .web-process-step-card-number {
                font-size: 1.8rem;
                top: 0.5rem;
                right: 0.5rem;
            }
            .web-process-step-icon-large {
                font-size: 3.5rem;
                margin-bottom: 1rem;
            }
            .web-process-step-title-bold {
                font-size: 1.3rem;
            }
            .web-process-step-description-small {
                font-size: 0.85rem;
            }

            /* Our Web Technology Stack adjustments */
            .tech-accordion-header {
                font-size: 1.3rem;
                padding: 1rem 1.5rem;
            }
            .tech-accordion-content.open {
                padding-top: 1rem;
            }
            .tech-accordion-items-grid {
                grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile for better size */
                gap: 1rem;
            }
            .tech-accordion-sub-item {
                min-height: 80px;
                padding: 0.75rem;
            }
            .tech-accordion-sub-icon {
                font-size: 2rem;
                margin-bottom: 0.25rem;
            }
            .tech-accordion-sub-label {
                font-size: 0.75rem;
            }
            .tech-accordion-details-display {
                margin-top: 1.5rem;
                padding: 1rem;
            }
            .tech-accordion-details-display h3 {
                font-size: 1.3rem;
            }
            .tech-accordion-details-display p {
                font-size: 0.8rem;
            }

            /* Web Industry Solutions adjustments */
            .web-industry-solution-block {
                flex-direction: column; /* Stack icon and text vertically */
                align-items: center;
                text-align: center;
                padding: 1.5rem;
                gap: 1rem;
            }
            .web-industry-icon-large {
                font-size: 3rem;
            }
            .web-industry-text-content h3 {
                font-size: 1.3rem;
            }
            .web-industry-text-content p {
                font-size: 0.9rem;
            }

            /* Testimonials adjustments */
            .testimonial-carousel-container {
                padding: 2rem 1rem;
            }
            .testimonial-item {
                padding: 1rem;
            }
            .testimonial-text {
                font-size: 1rem;
            }
            .dot {
                width: 10px;
                height: 10px;
                margin: 0 6px;
            }
        }
        /* Further specific adjustments for very small mobile screens (e.g., iPhone SE, narrow Androids) */
        @media (max-width: 480px) {
            .section-title {
                font-size: 1.5rem; /* Further reduced for smaller phones */
                line-height: 1.2;
                padding: 0 0.5rem; /* Slightly more padding within the title itself */
            }
        }
        @media (max-width: 380px) { /* Absolute smallest practical screen size */
            .section-title {
                font-size: 1.3rem; /* Smallest font size for titles */
                line-height: 1.15; /* Tighter line height */
                padding: 0 0.25rem; /* Minimal padding */
            }
        }</pre></body></html>