﻿
        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, #0a1f2e 0%, #1a3a4a 100%);
            color: white;
            padding: 5rem 2rem 4rem;
            text-align: center;
        }

        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #00ffcc;
        }

        .page-header p {
            font-size: 1.3rem;
            color: #66d9ff;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Stats Section */
        .stats-section {
            background: white;
            padding: 3rem 2rem;
            margin-top: -2rem;
            position: relative;
            z-index: 10;
        }

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .stat-box {
            text-align: center;
            padding: 2rem;
            background: linear-gradient(135deg, #00ffcc 0%, #66d9ff 100%);
            border-radius: 15px;
            color: #0a1f2e;
            transition: transform 0.3s;
        }

        .stat-box:hover {
            transform: translateY(-10px);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            display: block;
              color: #0a1f2e !important;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1.1rem;
            font-weight: 600;
              color: #0a1f2e !important;
        }

        /* Client Logos Section */
        .clients-section {
            padding: 4rem 2rem;
            background: white;
        }

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

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #0a1f2e;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 3rem;
        }

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

        .client-logo {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            border: 2px solid transparent;
            min-height: 150px;
        }

        .client-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 255, 204, 0.2);
            border-color: #00ffcc;
        }

        .client-logo img {
            max-width: 100%;
            max-height: 80px;
            filter: grayscale(100%);
            transition: filter 0.3s;
        }

        .client-logo:hover img {
            filter: grayscale(0%);
        }

        /* Placeholder logo styling */
        .placeholder-logo {
            font-size: 2rem;
            font-weight: bold;
            color: #0a1f2e;
            text-align: center;
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 4rem 2rem;
            background: #f8f9fa;
        }

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

        .testimonial-card {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
            transition: transform 0.3s;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
        }

        .quote-icon {
            font-size: 3rem;
            color: #00ffcc;
            opacity: 0.3;
            position: absolute;
            top: 1rem;
            left: 1.5rem;
        }

        .testimonial-text {
            font-style: italic;
            color: #555;
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #00ffcc 0%, #66d9ff 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0a1f2e;
            font-weight: bold;
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        .author-info h4 {
            color: #0a1f2e;
            font-size: 1.1rem;
            margin-bottom: 0.2rem;
        }

        .author-info p {
            color: #888;
            font-size: 0.9rem;
        }

        .company-logo-small {
            font-size: 0.8rem;
            color: #00ffcc;
            font-weight: 600;
        }

        /* Success Stories Section */
        .success-stories {
            padding: 4rem 2rem;
            background: white;
        }

        .story-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 3rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

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

        .story-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }

        .story-image {
            background: linear-gradient(135deg, #0a1f2e 0%, #1a3a4a 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 3rem;
            color: white;
        }

        .story-image-placeholder {
            font-size: 4rem;
        }

        .story-text {
            padding: 3rem;
        }

        .story-text h3 {
            color: #0a1f2e;
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .story-meta {
            display: flex;
            gap: 2rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #555;
            font-size: 0.9rem;
        }

        .meta-icon {
            color: #00ffcc;
            font-size: 1.2rem;
        }

        .story-description {
            color: #555;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .story-results {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid #00ffcc;
        }

        .story-results h4 {
            color: #0a1f2e;
            margin-bottom: 1rem;
        }

        .results-list {
            list-style: none;
        }

        .results-list li {
            padding: 0.3rem 0;
            color: #555;
        }

        .results-list li::before {
            content: "✓ ";
            color: #00ffcc;
            font-weight: bold;
            margin-right: 0.5rem;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #0a1f2e 0%, #1a3a4a 100%);
            color: white;
            padding: 4rem 2rem;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #00ffcc;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: #66d9ff;
        }

        .cta-button {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: linear-gradient(135deg, #00ffcc 0%, #66d9ff 100%);
            color: #0a1f2e;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.2rem;
            transition: all 0.3s;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 255, 204, 0.4);
        }

 /* Responsive Design */
        @media (max-width: 968px) {
            .page-header h1 {
                font-size: 2rem;
            }

           /* .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }*/

            .clients-grid {
                display: flex;
                flex-wrap: wrap;
                gap: 1rem;
                grid-template-columns: repeat(2, 1fr);
            }
            .client-logo {
                width: 47%;
            }
            .placeholder-logo {
                font-size: 22px;
            }

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

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

            .story-image {
                min-height: 200px;
            }
        }