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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
            background: transparent;
        }

        nav.scrolled {
            background: white;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.5rem;
            font-weight: bold;
            background: linear-gradient(135deg, #2563eb, #9333ea);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #2563eb, #9333ea);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

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

        .nav-links a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #2563eb;
        }

        .cta-button {
            background: linear-gradient(135deg, #2563eb, #9333ea);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s;
        }

        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            top: 100px;
            background: linear-gradient(135deg, #eff6ff 0%, #f3e8ff 50%, #fce7f3 100%);
            padding: 150px 2rem 100px;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-content {
            animation: fadeInUp 1s ease;
        }

        .badge {
            display: inline-block;
            background: #dbeafe;
            color: #2563eb;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .hero h1 {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .gradient-text {
            background: linear-gradient(135deg, #2563eb, #9333ea);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            font-size: 1.25rem;
            color: #666;
            margin-bottom: 2rem;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, #2563eb, #9333ea);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
        }

        .btn-secondary {
            background: white;
            color: #333;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            border: 2px solid #e5e7eb;
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            border-color: #2563eb;
        }

        /* Hero Image Placeholder */
        .hero-image-placeholder {
            padding: 2rem;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            position: relative;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #9ca3af;
        }

        .hero-image-placeholder::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #60a5fa, #a855f7);
            border-radius: 24px;
            transform: rotate(6deg);
            opacity: 0.2;
            z-index: -1;
        }

        /* Services Section */
        .services {
            padding: 100px 2rem;
            background: white;
        }

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

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.25rem;
            color: #666;
        }

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

        .service-card {
            padding: 2rem;
            background: linear-gradient(135deg, #fff, #f9fafb);
            border: 2px solid #e5e7eb;
            border-radius: 16px;
            transition: all 0.3s;
            cursor: pointer;
        }

        .service-card:hover {
            border-color: #2563eb;
            box-shadow: 0 10px 40px rgba(37, 99, 235, 0.1);
            transform: translateY(-8px);
        }

        .service-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #2563eb, #9333ea);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1);
        }

        .service-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
        }

        .service-card p {
            color: #666;
        }

        /* About Section */
        .about {
            padding: 100px 2rem;
            background: linear-gradient(135deg, #f9fafb 0%, #eff6ff 100%);
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image-placeholder {
            background: white;
            border-radius: 24px;
            padding: 2rem;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            color: #9ca3af;
            text-align: center;
        }

        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .about-content p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #2563eb, #9333ea);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        /* Team Section */
        .team {
            padding: 100px 2rem;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            position: relative;
        }

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

        .team-member {
            text-align: center;
            padding: 2rem;
            background: rgba(249, 250, 251, 0.95);
            border-radius: 16px;
            transition: all 0.3s;
            backdrop-filter: blur(10px);
        }

        .team-member:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            background: rgba(255, 255, 255, 0.98);
        }

        .member-image-container {
            width: 200px;
            height: 170px;
            margin: 0 auto 1.5rem;
            border-radius: 16px;
            overflow: hidden;
            border: 4px solid #e5e7eb;
            transition: all 0.3s;
            background: white;
            position: relative;
        }

        .team-member:hover .member-image-container {
            border-color: #2563eb;
            box-shadow: 0 10px 40px rgba(37, 99, 235, 0.3);
        }

        .member-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .member-image-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #eff6ff, #f3e8ff);
            color: #9ca3af;
            font-size: 0.85rem;
            text-align: center;
            padding: 1rem;
        }

        .team-member h3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }

        .team-member p {
            color: #666;
            margin-bottom: 1rem;
        }

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

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            color: white;
            text-decoration: none;
        }

        .social-link.linkedin {
            background: #0077b5;
        }

        .social-link.twitter {
            background: #1da1f2;
        }

        .social-link.facebook {
            background: #1877f2;
        }

        .social-link:hover {
            transform: scale(1.1);
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }
        /* Portfolio/Gallery Section */
        .portfolio-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
        }

        .portfolio-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .portfolio-item:hover .portfolio-image img {
            transform: scale(1.05);
        }
        .portfolio {
            padding: 100px 2rem;
            background: linear-gradient(135deg, #f9fafb 0%, #fff 100%);
        }

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

        .portfolio-item {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }

        .portfolio-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 50px rgba(0,0,0,0.15);
        }

        .portfolio-image-placeholder {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, #eff6ff, #f3e8ff);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #9ca3af;
            font-size: 0.9rem;
        }

        .portfolio-content {
            padding: 1.5rem;
        }

        .portfolio-content h3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }

        .portfolio-content p {
            color: #666;
        }

        /*.project-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            padding: 10px;
            margin-right: 100px;
        }

        .tag {
            background: #80a6d4;
            color: #fff;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
        }*/

        /* FAQ Section */
        .faq {
            padding: 100px 2rem;
            background: white;
        }

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

        .faq-item {
            background: white;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s;
        }

        .faq-item:hover {
            border-color: #2563eb;
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
            user-select: none;
        }

        .faq-icon {
            transition: transform 0.3s;
            color: #2563eb;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer-content {
            padding: 0 1.5rem 1.5rem;
            color: #666;
            line-height: 1.8;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        /* Partners Section */
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }

        .partner-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: all 0.3s;
            border: 2px solid #f3f4f6;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .partner-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-color: #3b82f6;
        }

        .partner-card img {
            max-width: 100%;
            height: auto;
            opacity: 0.7;
            transition: opacity 0.3s;
        }

        .partner-card:hover img {
            opacity: 1;
        }

        /* Contact Section */
        .contact {
            padding: 100px 2rem;
            background: linear-gradient(135deg, #eff6ff 0%, #f3e8ff 100%);
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-info h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .contact-info > p {
            font-size: 1.25rem;
            color: #666;
            margin-bottom: 2rem;
        }

        .contact-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .contact-icon {
            width: 48px;
            height: 48px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-icon.email {
            background: #dbeafe;
            color: #2563eb;
        }

        .contact-icon.phone {
            background: #f3e8ff;
            color: #9333ea;
        }

        .contact-icon.location {
            background: #d1fae5;
            color: #10b981;
        }

        .contact-details h3 {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .contact-details p {
            color: #666;
        }

        .contact-form {
            background: white;
            padding: 2rem;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #2563eb;
        }

        .form-group textarea {
            resize: none;
        }

        .submit-btn {
            width: 100%;
            background: linear-gradient(135deg, #2563eb, #9333ea);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .submit-btn:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
        }

        /* Technologies Section */
        .technologies {
            padding: 100px 2rem;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            position: relative;
        }

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

        .tech-card {
            background: white;
            border: 2px solid #e5e7eb;
            border-radius: 16px;
            padding: 2rem 1rem;
            text-align: center;
            transition: all 0.3s;
            cursor: pointer;
        }

        .tech-card:hover {
            border-color: #2563eb;
            box-shadow: 0 10px 40px rgba(37, 99, 235, 0.15);
            transform: translateY(-8px);
        }

        .tech-icon {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #2563eb, #9333ea);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: all 0.3s;
        }

        .tech-card:hover .tech-icon {
            transform: scale(1.1);
        }

        .tech-card h4 {
            font-size: 1.1rem;
            color: #333;
            font-weight: 600;
        }

        /* Footer */
        footer {
            background: #1f2937;
            color: white;
            padding: 3rem 2rem;
            text-align: center;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .footer-logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #2563eb, #9333ea);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        footer p {
            color: #9ca3af;
            margin: 0.5rem 0;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 1rem 2rem;
                box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero-container,
            .contact-container,
            .about-container {
                grid-template-columns: 1fr;
            }

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

            .cta-button {
                display: none;
            }

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

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