  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            padding: 20px 0;
            background: white;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #7c3aed;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 40px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-size: 14px;
            transition: color 0.3s;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #7c3aed;
        }

        .contact-btn {
            background: #7c3aed;
            color: white !important;
            padding: 10px 25px;
            border-radius: 5px;
            border: none;
            cursor: pointer;
            font-size: 14px;
        }

        /* Hero Section */
        .hero {
            text-align: center;
            padding: 80px 20px;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .hero h1 .highlight {
            color: #7c3aed;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            align-items: center;
            margin: 30px 0;
        }

        .primary-btn {
            background: #7c3aed;
            color: white;
            padding: 15px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .play-btn {
    width: 40px;
    height: 40px;
    border-radius: 10%;
    background: #000b56;
    border: 2px solid #e5e7eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

        .play-text {
            color: #666;
            font-size: 14px;
        }

        /* Brands Section */
        .brands {
            text-align: center;
            padding: 60px 20px;
            background: #f9fafb;
        }

        .brands p {
            color: #666;
            margin-bottom: 40px;
        }

        .brand-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 40px;
        }

        .brand-logo {
            width: 120px;
            height: 60px;
            background: white;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
            filter: grayscale(100%);
            opacity: 0.7;
        }

        /* Services Section */
        .services {
            padding: 80px 20px;
        }

        .section-label {
            color: #7c3aed;
            text-transform: uppercase;
            font-size: 12px;
            letter-spacing: 2px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .services h2 {
            font-size: 32px;
            margin-bottom: 60px;
            max-width: 500px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .service-card {
            text-align: left;
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: #f3f4f6;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 36px;
        }

        .service-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #1f2937;
        }

        .service-card p {
            color: #6b7280;
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .learn-more {
            color: #7c3aed;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .view-services {
            text-align: right;
        }

        .view-services-btn {
            background: white;
            color: #7c3aed;
            border: 2px solid #7c3aed;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        /* Portfolio Section */
        .portfolio {
            background: #7c3aed;
            padding: 80px 20px;
            color: white;
        }

        .portfolio h2 {
            font-size: 32px;
            line-height: 1.4;
            margin-bottom: 60px;
            max-width: 600px;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        .portfolio-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 16/10;
            background: #6d28d9;
        }

        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .portfolio-label {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: #7c3aed;
            padding: 8px 20px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 14px;
        }

        .view-projects-btn {
            background: white;
            color: #7c3aed;
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: 500;
            cursor: pointer;
        }

        /* Testimonial Section */
        .testimonials {
            padding: 80px 20px;
            background: #f9fafb;
        }

        .testimonials h2 {
            font-size: 32px;
            text-align: center;
            margin-bottom: 60px;
        }

        .testimonial-card {
            background: #ede9fe;
            padding: 50px;
            border-radius: 12px;
            display: flex;
            gap: 40px;
            align-items: center;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial-card::after {
            content: '"';
            position: absolute;
            right: 40px;
            top: 30px;
            font-size: 120px;
            color: #c4b5fd;
            font-family: Georgia, serif;
        }

        .testimonial-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: #ddd;
            flex-shrink: 0;
        }

        .testimonial-content p {
            font-size: 16px;
            line-height: 1.8;
            color: #4b5563;
            margin-bottom: 20px;
        }

        .testimonial-author {
            font-weight: 600;
            color: #1f2937;
        }

        .testimonial-role {
            color: #6b7280;
            font-size: 14px;
        }

        /* Blog Section */
        .blog {
            padding: 80px 20px;
        }

        .blog h2 {
            font-size: 32px;
            margin-bottom: 60px;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .blog-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .blog-image {
            width: 100%;
            aspect-ratio: 16/10;
            background: #e5e7eb;
        }

        .blog-content {
            padding: 25px;
        }

        .blog-meta {
            color: #7c3aed;
            font-size: 12px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .blog-title {
            font-size: 18px;
            margin-bottom: 15px;
            color: #1f2937;
        }

        .read-more {
            color: #7c3aed;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), #1f2937;
            padding: 100px 20px;
            text-align: center;
            color: white;
        }

        .cta h2 {
            font-size: 36px;
            margin-bottom: 30px;
        }

        .cta-btn {
            background: #7c3aed;
            color: white;
            padding: 15px 40px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            display: inline-block;
        }

        /* Footer */
        footer {
            background: #000;
            color: white;
            padding: 60px 20px 30px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

        .footer-logo {
            font-size: 24px;
            font-weight: bold;
            color: #7c3aed;
        }

        .footer-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            font-size: 14px;
        }

        .social-links {
            display: flex;
            gap: 20px;
        }

        .social-links a {
            color: white;
            font-size: 18px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            color: #666;
            font-size: 14px;
        }






/* ABOUT PAGE CSS */


       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            padding: 20px 0;
            background: white;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #7c3aed;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 40px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-size: 14px;
            transition: color 0.3s;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #7c3aed;
        }

        .contact-btn {
            background: #7c3aed;
            color: white !important;
            padding: 10px 25px;
            border-radius: 5px;
            border: none;
            cursor: pointer;
            font-size: 14px;
        }

        /* Page Hero */
        .page-hero {
            background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
            color: white;
            padding: 100px 20px;
            text-align: center;
        }

        .page-hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .page-hero p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }

        /* About Content */
        .about-content {
            padding: 80px 20px;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 80px;
        }

        .about-text h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: #1f2937;
        }

        .about-text p {
            font-size: 16px;
            line-height: 1.8;
            color: #6b7280;
            margin-bottom: 15px;
        }

        .about-image {
            width: 100%;
            aspect-ratio: 4/3;
            background: #e5e7eb;
            border-radius: 12px;
        }

        /* Stats Section */
        .stats {
            background: #f9fafb;
            padding: 80px 20px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 48px;
            color: #7c3aed;
            margin-bottom: 10px;
        }

        .stat-item p {
            color: #fff;
            font-size: 16px;
        }

        /* Values Section */
        .values {
            padding: 80px 20px;
        }

        .section-title {
            text-align: center;
            font-size: 36px;
            margin-bottom: 60px;
            color: #1f2937;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .value-card {
            text-align: center;
            padding: 40px 20px;
            background: #f9fafb;
            border-radius: 12px;
        }

        .value-icon {
            width: 80px;
            height: 80px;
            background: #ede9fe;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 36px;
        }

        .value-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #1f2937;
        }

        .value-card p {
            color: #6b7280;
            line-height: 1.8;
        }

        /* Team Section */
        .team {
            background: #f9fafb;
            padding: 80px 20px;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .team-member {
            text-align: center;
            background: white;
            padding: 20px;
            border-radius: 12px;
        }

        .team-photo {
            width: 150px;
            height: 150px;
            background: #e5e7eb;
            border-radius: 50%;
            margin: 0 auto 20px;
        }

        .team-member h4 {
            font-size: 18px;
            margin-bottom: 5px;
            color: #1f2937;
        }

        .team-member p {
            color: #7c3aed;
            font-size: 14px;
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), #1f2937;
            padding: 100px 20px;
            text-align: center;
            color: white;
        }

        .cta h2 {
            font-size: 36px;
            margin-bottom: 30px;
        }

        .cta-btn {
            background: #7c3aed;
            color: white;
            padding: 15px 40px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            display: inline-block;
        }

        /* Footer */
        footer {
            background: #000;
            color: white;
            padding: 60px 20px 30px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

        .footer-logo {
            font-size: 24px;
            font-weight: bold;
            color: #7c3aed;
        }

        .footer-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            font-size: 14px;
        }

        .social-links {
            display: flex;
            gap: 20px;
        }

        .social-links a {
            color: white;
            font-size: 18px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            color: #666;
            font-size: 14px;
        }




/* SERVICES */



* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            padding: 20px 0;
            background: white;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #7c3aed;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 40px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-size: 14px;
            transition: color 0.3s;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #7c3aed;
        }

        .contact-btn {
            background: #7c3aed;
            color: white !important;
            padding: 10px 25px;
            border-radius: 5px;
            border: none;
            cursor: pointer;
            font-size: 14px;
        }

        /* Page Hero */
        .page-hero {
            background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
            color: white;
            padding: 100px 20px;
            text-align: center;
        }

        .page-hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .page-hero p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }

        /* Services Overview */
        .services-overview {
            padding: 80px 20px;
            text-align: center;
        }

        .services-overview h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: #1f2937;
        }

        .services-overview p {
            font-size: 18px;
            color: #6b7280;
            max-width: 800px;
            margin: 0 auto 60px;
            line-height: 1.8;
        }

        /* Main Services */
        .main-services {
            padding: 80px 20px;
            background: #f9fafb;
        }

        .service-section {
            margin-bottom: 100px;
        }

        .service-section:last-child {
            margin-bottom: 0;
        }

        .service-header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 60px;
        }

        .service-header.reverse {
            direction: rtl;
        }

        .service-header.reverse > * {
            direction: ltr;
        }

        .service-content h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: #1f2937;
        }

        .service-icon-large {
            font-size: 64px;
            margin-bottom: 20px;
        }

        .service-content p {
            font-size: 16px;
            line-height: 1.8;
            color: #6b7280;
            margin-bottom: 30px;
        }

        .service-image {
            width: 100%;
            aspect-ratio: 4/3;
            background: #e5e7eb;
            border-radius: 12px;
        }

        .service-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: #ede9fe;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 24px;
        }

        .feature-card h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: #1f2937;
        }

        .feature-card p {
            font-size: 14px;
            color: #6b7280;
            line-height: 1.8;
        }

        /* Process Section */
        .process {
            padding: 80px 20px;
        }

        .section-title {
            text-align: center;
            font-size: 36px;
            margin-bottom: 60px;
            color: #1f2937;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .process-step {
            text-align: center;
            padding: 30px 20px;
            background: #f9fafb;
            border-radius: 12px;
            position: relative;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: #7c3aed;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            margin: 0 auto 20px;
        }

        .process-step h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: #1f2937;
        }

        .process-step p {
            font-size: 14px;
            color: #6b7280;
            line-height: 1.8;
        }

        /* Pricing Section */
        .pricing {
            padding: 80px 20px;
            background: #f9fafb;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .pricing-card {
            background: white;
            padding: 40px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .pricing-card.featured {
            background: #7c3aed;
            color: white;
            transform: scale(1.05);
        }

        .pricing-card h3 {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .pricing-card.featured h3 {
            color: white;
        }

        .price {
            font-size: 48px;
            font-weight: bold;
            margin: 20px 0;
            color: #7c3aed;
        }

        .pricing-card.featured .price {
            color: white;
        }

        .price span {
            font-size: 18px;
            font-weight: normal;
        }

        .pricing-features {
            list-style: none;
            margin: 30px 0;
            text-align: left;
        }

        .pricing-features li {
            padding: 10px 0;
            border-bottom: 1px solid #e5e7eb;
        }

        .pricing-card.featured .pricing-features li {
            border-bottom-color: rgba(255,255,255,0.2);
        }

        .pricing-btn {
            background: #7c3aed;
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            display: inline-block;
            border: 2px solid #7c3aed;
        }

        .pricing-card.featured .pricing-btn {
            background: white;
            color: #7c3aed;
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), #1f2937;
            padding: 100px 20px;
            text-align: center;
            color: white;
        }

        .cta h2 {
            font-size: 36px;
            margin-bottom: 30px;
        }

        .cta-btn {
            background: #7c3aed;
            color: white;
            padding: 15px 40px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            display: inline-block;
        }

        /* Footer */
        footer {
            background: #000;
            color: white;
            padding: 60px 20px 30px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

        .footer-logo {
            font-size: 24px;
            font-weight: bold;
            color: #7c3aed;
        }

        .footer-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            font-size: 14px;
        }

        .social-links {
            display: flex;
            gap: 20px;
        }

        .social-links a {
            color: white;
            font-size: 18px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            color: #666;
            font-size: 14px;
        }

        

        /* PROJECTS*/

         * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            padding: 20px 0;
            background: white;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #7c3aed;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 40px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-size: 14px;
            transition: color 0.3s;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #7c3aed;
        }

        .contact-btn {
            background: #7c3aed;
            color: white !important;
            padding: 10px 25px;
            border-radius: 5px;
            border: none;
            cursor: pointer;
            font-size: 14px;
        }

        /* Page Hero */
        .page-hero {
            background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
            color: white;
            padding: 100px 20px;
            text-align: center;
        }

        .page-hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .page-hero p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }

        /* Filter Section */
        .filter-section {
            padding: 60px 20px 40px;
            text-align: center;
            background: #f9fafb;
        }

        .filter-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 10px 25px;
            background: #1e195a;;
            border: 2px solid #e5e7eb;
            border-radius: 5px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: #7c3aed;
            color: white;
            border-color: #7c3aed;
        }

        /* Projects Grid */
        .projects-section {
            padding: 80px 20px;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }

        .project-card {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .project-card:hover {
            transform: translateY(-5px);
        }

        .project-image {
            width: 100%;
            aspect-ratio: 16/10;
            background: #e5e7eb;
            position: relative;
        }

        .project-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            padding: 40px 30px 30px;
            color: white;
        }

        .project-category {
            display: inline-block;
            background: #7c3aed;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .project-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .project-description {
            font-size: 14px;
            opacity: 0.9;
        }

        /* Featured Project */
        .featured-project {
            background: #7c3aed;
            color: white;
            padding: 80px 20px;
            margin-bottom: 80px;
        }

        .featured-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .featured-text h2 {
            font-size: 42px;
            margin-bottom: 20px;
        }

        .featured-text p {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 15px;
            opacity: 0.9;
        }

        .featured-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .stat-item h3 {
            font-size: 36px;
            margin-bottom: 5px;
        }

        .stat-item p {
            font-size: 14px;
            opacity: 0.8;
        }

        .featured-image {
            width: 100%;
            aspect-ratio: 4/3;
            background: rgba(255,255,255,0.1);
            border-radius: 12px;
        }

        .view-case-btn {
            background: white;
            color: #7c3aed;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            display: inline-block;
            margin-top: 30px;
        }

        /* Case Studies Section */
        .case-studies {
            padding: 80px 20px;
            background: #f9fafb;
        }

        .section-title {
            text-align: center;
            font-size: 36px;
            margin-bottom: 60px;
            color: #1f2937;
        }

        .case-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .case-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .case-image {
            width: 100%;
            aspect-ratio: 16/10;
            background: #e5e7eb;
        }

        .case-content {
            padding: 25px;
        }

        .case-tag {
            color: #7c3aed;
            font-size: 12px;
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .case-content h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: #1f2937;
        }

        .case-content p {
            font-size: 14px;
            color: #6b7280;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .read-case {
            color: #7c3aed;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        /* Testimonial */
        .project-testimonial {
            padding: 80px 20px;
            text-align: center;
        }

        .testimonial-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .testimonial-quote {
            font-size: 24px;
            line-height: 1.6;
            color: #1f2937;
            margin-bottom: 30px;
            font-style: italic;
        }

        .testimonial-author {
            font-size: 18px;
            font-weight: 600;
            color: #7c3aed;
            margin-bottom: 5px;
        }

        .testimonial-position {
            font-size: 14px;
            color: #6b7280;
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), #1f2937;
            padding: 100px 20px;
            text-align: center;
            color: white;
        }

        .cta h2 {
            font-size: 36px;
            margin-bottom: 30px;
        }

        .cta-btn {
            background: #7c3aed;
            color: white;
            padding: 15px 40px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            display: inline-block;
        }

        /* Footer */
        footer {
            background: #000;
            color: white;
            padding: 60px 20px 30px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

        .footer-logo {
            font-size: 24px;
            font-weight: bold;
            color: #7c3aed;
        }

        .footer-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            font-size: 14px;
        }

        .social-links {
            display: flex;
            gap: 20px;
        }

        .social-links a {
            color: white;
            font-size: 18px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            color: #666;
            font-size: 14px;
        }

        