 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #1a0b2e;
            color: white;
            overflow-x: hidden;
            max-width: 100%;
        }

        /* Header */
        .header {
            width: 100%;
            background: rgba(26, 11, 46, 0.95);
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(102, 126, 234, 0.3);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 800;
        }

        .logo-text .highlight {
            color: #ffd700;
        }

        .header-contact {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .contact-link {
            display: flex;
            align-items: center;
            gap: 8px;
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-link:hover {
            color: #ffd700;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-icon {
            width: 42px;
            height: 42px;
            background: #222;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-icon:hover {
            transform: translateY(-4px) scale(1.1);
        }

        /* Brand Colors */
        .facebook { background: #1877f2; }
        .instagram { background: #e1306c; }
        .whatsapp { background: #25D366; }
        .linkedin { background: #0077b5; }


        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #1a0b2e 0%, #2d1b4e 100%);
            padding: 100px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: rgba(138, 43, 226, 0.1);
            border-radius: 50%;
            top: -200px;
            right: -200px;
            animation: float 6s ease-in-out infinite;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }

        .hero .highlight {
            color: #ffd700;
            position: relative;
        }

        .hero p {
            font-size: 1.3rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto 30px;
            animation: fadeInUp 1s ease 0.2s backwards;
        }

        .phone-mockups {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 50px;
            animation: fadeInUp 1s ease 0.4s backwards;
        }

        .phone {
            width: 200px;
            height: 200px;
            background: white;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            padding: 15px;
            transition: transform 0.3s ease;
        }

        .phone:hover {
            transform: translateY(-10px) scale(1.05);
        }

        .phone-screen {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        /* About Section */
        .about {
            padding: 100px 20px;
            background: #2d1b4e;
            display: flex;
            align-items: center;
            gap: 50px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-character {
            flex: 1;
            font-size: 10rem;
            animation: wave 2s ease-in-out infinite;
        }

        .about-content {
            flex: 2;
        }

        .about-content h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            animation: fadeInRight 1s ease;
        }

        .about-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            opacity: 0.9;
            animation: fadeInRight 1s ease 0.2s backwards;
        }

        /* About SaurabhCreative Section */
        .about-company {
            padding: 100px 20px;
            background: #1a0b2e;
        }

        .about-company-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-company h2 {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 60px;
            animation: fadeInUp 1s ease;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-top: 50px;
        }

        .stat-card {
            background: #2d1b4e;
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: #ffd700;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Services Section */
        .services {
            padding: 100px 20px;
            background: #2d1b4e;
        }

        .services h2 {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 60px;
            animation: fadeInUp 1s ease;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: #1a0b2e;
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            animation: fadeInUp 1s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
        }

        .service-icon {
            font-size: 4rem;
            margin-bottom: 20px;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .service-card p {
            opacity: 0.9;
            line-height: 1.6;
        }

        /* Projects Section */
        .projects {
            padding: 100px 20px;
            background: #1a0b2e;
        }

        .projects h2 {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 60px;
            animation: fadeInUp 1s ease;
        }

        .project-tabs {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .tab-btn {
            padding: 12px 30px;
            background: transparent;
            border: 2px solid #667eea;
            color: white;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
            font-weight: 600;
        }

        .tab-btn:hover, .tab-btn.active {
            background: #667eea;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .project-card {
            background: #2d1b4e;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
            animation: fadeInUp 1s ease;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
        }

        .project-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .project-image::before {
            content: '🖼️';
            font-size: 4rem;
            animation: float 3s ease-in-out infinite;
        }

        .project-mockup {
            width: 80%;
            height: 80%;
            background: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
        }

        .project-card:hover .project-mockup {
            transform: scale(1.05);
        }

        .project-info {
            padding: 25px;
        }

        .project-info h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #ffd700;
        }

        .project-info p {
            opacity: 0.9;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Why Choose Us Section */
        .why-choose {
            padding: 100px 20px;
            background: #2d1b4e;
        }

        .why-choose h2 {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 60px;
            animation: fadeInUp 1s ease;
        }

        .why-choose-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .why-choose-card {
            background: #1a0b2e;
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .why-choose-card:hover {
            transform: translateY(-10px);
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
        }

        .why-icon {
            font-size: 4rem;
            margin-bottom: 20px;
        }

        .why-choose-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .why-choose-card p {
            opacity: 0.9;
            line-height: 1.6;
        }

        /* Mobile Apps Section */
       .ecommerce-websites {
            padding: 60px 20px;
            text-align: center;
        }

        .ecommerce-websites h2 {
            margin-bottom: 40px;
            font-size: 32px;
        }

        .apps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

        .app-card {
            height: 320px;
            border-radius: 16px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }

        .app-card:hover {
            transform: translateY(-8px);
        }

        .overlay {
            position: absolute;
            bottom: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
            color: #fff;
        }

        .app-name {
            font-size: 20px;
            font-weight: 600;
        }

        .app-category {
            font-size: 14px;
            opacity: 0.9;
        }

        /* Background images */
        .bg-store {
            background-image: url('images/splitfloor.webp');
        }

        .bg-grocery {
            background-image: url('images/e-book.jpg');
        }

        .bg-electronics {
            background-image: url('images/accreditation.webp');
        }

        .bg-furniture {
            background-image: url('images/marketing.png');
        }


        /* .apps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .app-card {
            background: #2d1b4e;
            border-radius: 20px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease;
        }*/

        .app-card:hover {
            transform: translateY(-10px);
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .app-screen {
            width: 100%;
            height: 350px;
            background: white;
            border-radius: 20px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
        }

        .app-name {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .app-category {
            font-size: 0.9rem;
            opacity: 0.7;
        } 

        /* Technologies Section */
        .technologies {
            padding: 100px 20px;
            background: #2d1b4e;
            text-align: center;
        }

        .technologies h2 {
            font-size: 3rem;
            margin-bottom: 60px;
            animation: fadeInUp 1s ease;
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .tech-card {
            background: #1a0b2e;
            padding: 40px;
            border-radius: 20px;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease;
        }

        .tech-card:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
        }

        .tech-logo {
            font-size: 4rem;
            margin-bottom: 20px;
        }

        .tech-name {
            font-size: 1.3rem;
            font-weight: 600;
        }

        /* Contact Section */
        .contact {
            padding: 100px 20px;
            background: linear-gradient(135deg, #1a0b2e 0%, #2d1b4e 100%);
            text-align: center;
        }

        .contact h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }

        .contact p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 40px;
            animation: fadeInUp 1s ease 0.2s backwards;
        }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.4s backwards;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.1rem;
        }

        .contact-icon {
            font-size: 2rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes wave {
            0%, 100% {
                transform: rotate(0deg);
            }
            25% {
                transform: rotate(10deg);
            }
            75% {
                transform: rotate(-10deg);
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .header {
                flex-direction: column;
                gap: 20px;
                padding: 20px;
            }

            .header-contact {
                flex-direction: column;
                gap: 15px;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .phone-mockups {
                gap: 15px;
            }

            .phone {
                width: 150px;
                height: 300px;
            }

            .about {
                flex-direction: column;
                text-align: center;
            }

            .about-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .projects-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .why-choose-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .apps-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .tech-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .phone-mockups {
                flex-wrap: wrap;
            }

            .about-character {
                font-size: 6rem;
            }

            .about-content h2 {
                font-size: 2rem;
            }

            .about-stats {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .projects-grid {
                grid-template-columns: 1fr;
            }

            .why-choose-grid {
                grid-template-columns: 1fr;
            }

            .apps-grid {
                grid-template-columns: 1fr;
            }

            .tech-grid {
                grid-template-columns: 1fr;
            }

            .contact-info {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }

            .phone {
                width: 120px;
                height: 240px;
            }
        }

        .floating-contact {
    position: fixed;
    right: 20px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.contact-btn i {
    font-size: 20px;
}

.contact-btn:hover {
    transform: translateX(-5px);
    opacity: 0.95;
}

/* Button Colors */
.whatsapp { background: #25D366; }
.call { background: #007bff; }
.email { background: #dc3545; }

/* Mobile */
@media (max-width: 576px) {
    .contact-btn span {
        display: none;
    }
    .contact-btn {
        padding: 14px;
        border-radius: 50%;
        justify-content: center;
    }
}


/* Popup Overlay */
/* Popup Overlay */
.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(4px);
    z-index: 999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: overlayFade 0.3s ease forwards;
}

/* Popup Box */
.popup-box {
    background: #fff;
    max-width: 420px;
    width: 100%;
    padding: 30px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    animation: popupSlide 0.45s ease forwards;
}

/* Heading */
.popup-box h2 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    color: #1a0b2e;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 26px;
    cursor: pointer;
    color: #555;
    transition: transform 0.2s ease, color 0.2s ease;
}

.close-btn:hover {
    transform: rotate(90deg);
    color: #ff3b3b;
}

/* Form */
.popup-box form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Inputs */
.popup-box input,
.popup-box select,
.popup-box textarea {
    padding: 13px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
    width: 100%;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.popup-box input:focus,
.popup-box select:focus,
.popup-box textarea:focus {
    border-color: #1a0b2e;
    box-shadow: 0 0 0 3px rgba(10,102,255,0.15);
    outline: none;
}

.popup-box textarea {
    resize: none;
    height: 90px;
}

/* Button */
.popup-box button {
    background: linear-gradient(135deg, #1a0b2e, #1a0b2e);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.popup-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(10,102,255,0.35);
}

/* Animations */
@keyframes popupSlide {
    from {
        transform: translateY(40px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes overlayFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Mobile */
@media (max-width: 480px) {
    .popup-box {
        padding: 22px;
        border-radius: 14px;
    }
}


