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

        body {
            font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
            line-height: 1.6;
            color: #000;
            overflow-x: hidden;
        }

      .portfolio-showcase{
            color: #000;
            margin-bottom: 2rem;
            font-size: 2.5rem;
            font-weight: 700;
        
      }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: white;
            color: #000;
            padding: 2rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: relative;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 3rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #000;
        }

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

        .nav-links a {
            color: #000;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-weight: 500;
        }

        .nav-links a:hover {
            background: #f3f4f6;
            transform: translateY(-1px);
        }

        .hero {
            text-align: center;

        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: #000;
            font-weight: 700;
            line-height: 1.1;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            color: #6b7280;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .container-cta{
            display: flex;
            justify-content: center; 
            align-items: center;     
            height: 20vh;   
         }

        .cta-button {
            background: #000;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 4px 14px 0 rgba(0,0,0,0.1);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            background: #111;
        }

        /* Stats Section */
        .stats {
            background: #fafafa;
            padding: 4rem 0;
            text-align: center;
        }

        .stats h2 {
            color: #000;
            margin-bottom: 2rem;
            font-size: 2.5rem;
            font-weight: 700;
          
        }

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

        .stat-item {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 1px solid #f3f4f6;
        }

        .stat-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #6b7280;
            font-weight: 500;
        }

        /* Services Section */
        .services {
            padding: 4rem 0;
            background: white;
        }

        .services h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #000;
            font-weight: 700;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.15);
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #000;
            font-weight: 600;
        }

        .service-card p {
            color: #6b7280;
            line-height: 1.7;
        }

        /* Case Studies */
        .case-studies {
            background: #fafafa;
            padding: 4rem 0;
        }

        .case-studies h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #000;
            font-weight: 700;
        }

        .case-studies p {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 1.2rem;
            color: #6b7280;
        }

        .case-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .case-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 1px solid #f3f4f6;
        }

        .case-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.15);
        }

        .case-header {
            background: #000;
            color: white;
            padding: 1.5rem;
            font-weight: 600;
            font-size: 1.2rem;
        }

        .case-content {
            padding: 1.5rem;
        }

        .case-stats {
            font-size: 1.5rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 0.5rem;
        }

        .case-description {
            color: #6b7280;
            line-height: 1.7;
        }

        /* Pricing Section */
        .pricing {
            padding: 4rem 0;
            background: white;
        }

        .pricing h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #000;
            font-weight: 700;
        }

        .pricing-subtitle {
            text-align: center;
            margin-bottom: 3rem;
            color: #6b7280;
            font-size: 1.2rem;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .pricing-card {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .pricing-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.15);
            border-color: #000;
        }

        .pricing-card.featured {
            border: 2px solid #000;
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.2);
        }

        .plan-name {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #000;
        }

        .plan-price {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #000;
        }

        .plan-price-period {
            font-size: 1rem;
            color: #6b7280;
            font-weight: 400;
        }

        .plan-features {
            list-style: none;
            margin: 2rem 0;
            text-align: left;
        }

        .plan-features li {
            padding: 0.5rem 0;
            color: #374151;
            display: flex;
            align-items: center;
        }

        .plan-features li:before {
            content: "✓";
            color: #000;
            font-weight: bold;
            margin-right: 0.5rem;
        }

        /* FAQ Section */
        .faq {
            padding: 4rem 0;
            background: #fafafa;
        }

        .faq h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #000;
            font-weight: 700;
        }

        .faq-item {
            background: white;
            margin-bottom: 1rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            border: 1px solid #f3f4f6;
        }

        .faq-question {
            background: white;
            color: #000;
            padding: 1.5rem;
            cursor: pointer;
            transition: background 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            border-bottom: 1px solid #f3f4f6;
        }

        .faq-question:hover {
            background: #f9fafb;
        }

        .faq-answer {
            padding: 1.5rem;
            display: none;
            color: #374151;
            line-height: 1.7;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        .faq-toggle {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
            color: #6b7280;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        /* Footer */
        footer {
            background: #000;
            color: white;
            text-align: center;
            padding: 3rem 0;
        }

        footer h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        footer p {
            margin-bottom: 1rem;
            color: #d1d5db;
        }

        footer .cta-button {
            background: white;
            color: #000;
            margin-top: 1rem;
        }

        footer .cta-button:hover {
            background: #f3f4f6;
        }

        footer .copyright {
            margin-top: 2rem;
            opacity: 0.7;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .hero {
                min-height: 60vh;
            }
            
            .nav-links {
                display: none;
            }
            
            .services-grid,
            .pricing-grid,
            .case-grid {
                grid-template-columns: 1fr;
            }
            
            .pricing-card.featured {
                transform: none;
            }
        }

        /* Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }
      /*marquee*/
      .marquee-wrapper {
      background: white;
      border-radius: 12px;
      padding: 1rem;
      box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
      overflow: hidden;
    }

    /* Inline images inside marquee */
    .marquee-logo {
      display: inline-block;
      vertical-align: middle;
      margin-right: 1.5rem;     /* space between logos */
      max-height: 48px;         /* controls visible size of logos */
      height: auto;
      width: auto;
      border-radius: 25px;
    }

    /* Make logos slightly larger on wide screens */
    @media (min-width: 768px) {
      .marquee-logo { max-height: 500px; }
    }


    /*new*/
   /* Portfolio Showcase Section */
        .portfolio-showcase {
            background: #000;
            padding: 4rem 0;
            overflow: hidden;
            position: relative;
        }

        .showcase-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .showcase-header h2 {
            color: white;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .showcase-header p {
            color: #9ca3af;
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .marquee {
            display: flex;
            overflow: hidden;
            user-select: none;
            gap: 4rem;
            height:400px;
            background:#FAFAFA;
        }

        .marquee-content {
            display: flex;
            animation: scroll 25s linear infinite;
            gap: 4rem;
            align-items: center;
            background: transparent;
        }

        .phone-mockup {
            width: 180px;
            height: 360px;
            position: relative;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .phone-mockup:hover {
            transform: translateY(-8px);
        }

        .iphone-frame {
            width: 100%;
            height: 100%;
            position: relative;
            background: #1a1a1a;
            border-radius: 28px;
            padding: 4px;
           /* box-shadow: 
                0 0 0 1px #333,
                0 0 0 3px #1a1a1a,
                0 0 0 4px #333,
                0 12px 40px rgba(0,0,0,0.4);*/
        }

        .iphone-screen-container {
            width: 100%;
            height: 100%;
            background: #000;
            border-radius: 24px;
            position: relative;
            overflow: hidden;
        }

        .phone-screen {
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
            border-radius: 24px;
        }

        .phone-screen img,
        .phone-screen video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* iPhone Notch */
        .iphone-notch {
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 16px;
            background: #1a1a1a;
            border-radius: 0 0 8px 8px;
            z-index: 10;
           /* box-shadow: 0 2px 4px rgba(0,0,0,0.3);*/
           display: none;
        }

        /* iPhone Home Indicator */
        .iphone-home-indicator {
            position: absolute;
            bottom: 6px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 3px;
            background: rgba(255,255,255,0.3);
            border-radius: 2px;
            z-index: 10;
        }

        /* iPhone Side Buttons */
        .iphone-button-left {
            position: absolute;
            left: -2px;
            top: 60px;
            width: 2px;
            height: 25px;
            background: #333;
            border-radius: 0 2px 2px 0;
        }

        .iphone-button-left::after {
            content: '';
            position: absolute;
            left: 0;
            top: 35px;
            width: 2px;
            height: 45px;
            background: #333;
            border-radius: 0 2px 2px 0;
        }

        .iphone-button-right {
            position: absolute;
            right: -2px;
            top: 80px;
            width: 2px;
            height: 60px;
            background: #333;
            border-radius: 2px 0 0 2px;
        }

        .brand-label {
            position: absolute;
            bottom: -35px;
            left: 50%;
            transform: translateX(-50%);
            color: #9ca3af;
            font-size: 0.85rem;
            font-weight: 500;
            white-space: nowrap;
            opacity: 0.8;
        }

        /* Marquee Animation */
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-100% - 4rem));
            }
        }

        /* Pause on hover */
        .marquee:hover .marquee-content {
            animation-play-state: paused;
        }

        /* Gradient fade edges */
        .portfolio-showcase::before,
        .portfolio-showcase::after {
            content: '';
            position: absolute;
            top: 0;
            width: 150px;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }

        .portfolio-showcase::before {
            left: 0;
            background: linear-gradient(to right, #000, transparent);
        }

        .portfolio-showcase::after {
            right: 0;
            background: linear-gradient(to left, #000, transparent);
        }

