@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --primary: #ff2d75;
    --secondary: #7c3aed;
    --accent: #3b82f6;
    --bg-dark: #050505;
    --card-bg: #0f0a0d;
    --border: #2a0f18;
    --text-muted: #6b7280;
}

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

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--bg-dark);
    color: white;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5 { font-family: 'Syne', sans-serif; }

/* GRADIENT TEXT */
#typingText, .gradient-text {
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent), var(--primary));
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 5s linear infinite;
}
#typingText {
    border-right: 3px solid var(--primary);
    padding-right: 8px;
}
@keyframes shine { to { background-position: 300% center; } }

/* HERO BLOB */
.hero-image-blob {
    width: 100%; max-width: 500px; height: 400px;
    background: linear-gradient(45deg, var(--card-bg), #1a0b10);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    overflow: hidden;
    border: 2px solid var(--border);
    animation: morph 10s ease-in-out infinite;
}
@keyframes morph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

/* NAVIGATION */
.glass-nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}
.glass-nav.scrolled { padding: 0.75rem 5%; background: rgba(5,5,5,0.97); }
.nav-links {
    display: flex; gap: 2rem; list-style: none;
    position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-link.active {
    color: #ff2d75;
}

.nav-actions { display: flex; align-items: center; gap: 1.5rem; }
.quote-btn {
    background: transparent; border: 1px solid var(--primary); color: white;
    padding: 0.6rem 1.5rem; border-radius: 50px; text-decoration: none;
    font-weight: 700; font-size: 0.75rem; text-transform: uppercase;
    transition: 0.3s; font-family: 'Syne', sans-serif;
}
.quote-btn:hover { background: var(--primary); box-shadow: 0 0 15px rgba(255,45,117,0.4); }
.nav-link {
    text-decoration: none; color: #9ca3af; font-weight: 600;
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em;
    transition: 0.3s; font-family: 'Syne', sans-serif;
}
.nav-link:hover, .nav-link.active { color: var(--primary); }
#menuBtn { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }
#mobileMenu {
    display: none; position: fixed; top: 70px; left: 0; width: 100%;
    background: var(--card-bg); flex-direction: column;
    padding: 2rem; gap: 1.5rem; z-index: 999; border-bottom: 1px solid var(--border);
}
#mobileMenu.open { display: flex; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.4,0,0.2,1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* CARDS */
.premium-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 1rem; padding: 2.5rem; transition: 0.4s;
}
.premium-card:hover {
    border-color: rgba(255,45,117,0.3); transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(255,45,117,0.07);
}

.project-card { cursor: pointer; }
.project-img {
    height: 300px; border-radius: 1rem;
    border: 1px solid var(--border); transition: 0.4s;
}
.project-card:hover .project-img { transform: scale(0.98); border-color: var(--primary); }

.glow-btn {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white; padding: 1rem 2.5rem; border-radius: 50px;
    text-decoration: none; font-weight: 800; display: inline-block;
    transition: 0.3s; font-family: 'Syne', sans-serif; letter-spacing: 0.03em;
    border: none; cursor: pointer; font-size: 1rem;
}
.glow-btn:hover { box-shadow: 0 0 30px rgba(255,45,117,0.6); transform: translateY(-2px); }

/* MOUSE GLOW */
#mouseGlow {
    pointer-events: none; position: fixed; width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,45,117,0.07) 0%, transparent 70%);
    z-index: 9999; transform: translate(-50%, -50%);
}

/* ABOUT */
.about-image-frame {
    position: relative; padding: 10px;
    background: linear-gradient(135deg, var(--border), transparent); border-radius: 20px;
}
.about-image-frame img { width: 100%; height: 500px; object-fit: cover; box-shadow: 20px 20px 60px rgba(0,0,0,0.5); }
.glow-dot { box-shadow: 0 0 15px var(--primary); }

/* MARQUEE */
.marquee-wrapper {
    overflow: hidden; padding: 1.5rem 0;
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.marquee-track {
    display: flex; gap: 4rem;
    animation: marquee 25s linear infinite; width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
    white-space: nowrap; font-family: 'Syne', sans-serif; font-size: 0.75rem;
    font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--text-muted); display: flex; align-items: center; gap: 2rem;
}
.marquee-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }

/* SECTION LABEL */
.section-label {
    font-family: 'Syne', sans-serif; font-size: 0.7rem; font-weight: 800;
    letter-spacing: 0.25em; text-transform: uppercase; color: var(--primary);
    display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem;
}
.section-label::before { content: ''; display: inline-block; width: 2rem; height: 2px; background: var(--primary); }

/* SERVICE CARDS */
.service-mega-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 1.5rem; padding: 3rem;
    position: relative; overflow: hidden; transition: 0.5s;
}
.service-mega-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0); transform-origin: left; transition: transform 0.5s;
}
.service-mega-card:hover::before { transform: scaleX(1); }
.service-mega-card:hover { border-color: rgba(255,45,117,0.2); transform: translateY(-6px); box-shadow: 0 30px 80px rgba(0,0,0,0.4); }
.service-icon {
    width: 60px; height: 60px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 1.5rem;
    background: rgba(255,45,117,0.1); border: 1px solid rgba(255,45,117,0.2);
}

/* TEAM CARDS */
.team-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 1.5rem; overflow: hidden; transition: 0.4s;
}
.team-card:hover { border-color: rgba(124,58,237,0.4); transform: translateY(-5px); box-shadow: 0 20px 60px rgba(124,58,237,0.1); }
.team-card img { width: 100%; height: 250px; object-fit: cover; filter: grayscale(60%); transition: 0.5s; }
.team-card:hover img { filter: grayscale(0%); }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); overflow: hidden; }
.faq-question {
    width: 100%; background: none; border: none; color: white;
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 0; cursor: pointer; font-family: 'Syne', sans-serif;
    font-size: 1.1rem; font-weight: 700; text-align: left; transition: 0.3s;
}
.faq-question:hover { color: var(--primary); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    color: var(--text-muted); line-height: 1.8;
}
.faq-answer.open { max-height: 300px; padding-bottom: 1.5rem; }
.faq-icon {
    width: 30px; height: 30px; border-radius: 50%;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: 0.3s; font-size: 1.2rem;
}
.faq-item.open .faq-icon { background: var(--primary); border-color: var(--primary); transform: rotate(45deg); }

/* PRICING */
.pricing-card {
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: 1.5rem; padding: 3rem; position: relative; transition: 0.4s;
}
.pricing-card.featured {
    border-color: rgba(255,45,117,0.5);
    background: linear-gradient(135deg, #150a0e, #0f0a0d);
}
.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white; font-size: 0.6rem; font-weight: 800; letter-spacing: 0.15em;
    padding: 0.35rem 1.5rem; border-radius: 0 0 1rem 1rem; font-family: 'Syne', sans-serif;
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: 0 30px 80px rgba(0,0,0,0.3); }
.price-amount { font-family: 'Syne', sans-serif; font-size: 3.5rem; font-weight: 800; }
.check-item {
    display: flex; align-items: center; gap: 0.75rem;
    font-size: 0.9rem; color: #d1d5db; margin-bottom: 0.75rem;
}
.check-dot {
    width: 20px; height: 20px; border-radius: 50%;
    background: rgba(255,45,117,0.15); border: 1px solid rgba(255,45,117,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem; flex-shrink: 0; color: var(--primary);
}

/* PROCESS STEPS */
.process-step {
    padding: 2.5rem; background: var(--card-bg);
    border: 1px solid var(--border); border-radius: 1.5rem; transition: 0.4s; position: relative;
}
.process-step:hover { border-color: rgba(255,45,117,0.3); transform: translateY(-4px); }
.step-number {
    font-family: 'Syne', sans-serif; font-size: 5rem; font-weight: 800;
    color: rgba(255,45,117,0.06); position: absolute; top: 1rem; right: 1.5rem; line-height: 1;
}

/* VALUE CARDS */
.value-card {
    padding: 2rem; border: 1px solid var(--border); border-radius: 1rem;
    background: var(--card-bg); display: flex; gap: 1.5rem; align-items: flex-start; transition: 0.4s;
}
.value-card:hover { border-color: rgba(124,58,237,0.4); transform: translateX(6px); }
.value-icon {
    font-size: 1.5rem; width: 50px; height: 50px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(124,58,237,0.1); border: 1px solid rgba(124,58,237,0.2); flex-shrink: 0;
}

/* FILTER TABS */
.filter-tab {
    padding: 0.6rem 1.5rem; border-radius: 50px; border: 1px solid var(--border);
    background: none; color: var(--text-muted); font-family: 'Syne', sans-serif;
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em;
    text-transform: uppercase; cursor: pointer; transition: 0.3s;
}
.filter-tab:hover, .filter-tab.active {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-color: transparent; color: white;
}

/* FLOAT ANIMATION */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.float-badge { animation: float 4s ease-in-out infinite; }

/* TECH PILL */
.tech-pill {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1.2rem; border: 1px solid var(--border); border-radius: 50px;
    font-family: 'Syne', sans-serif; font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.05em; color: var(--text-muted); transition: 0.3s; white-space: nowrap;
}
.tech-pill:hover { border-color: var(--primary); color: white; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }
::selection { background: rgba(255,45,117,0.25); }

@media (max-width: 768px) {
    .nav-links { display: none; }
    #menuBtn { display: block; }
}

/* contact us  */
        /* FLOATING LABEL INPUTS */
        .fl-group { position: relative; margin-bottom: 0; }
        .fl-input {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid #2a0f18;
            padding: 1.4rem 0 0.6rem 0;
            color: white;
            font-size: 1rem;
            font-family: 'DM Sans', sans-serif;
            outline: none;
            transition: border-color 0.3s;
        }
        .fl-input::placeholder { color: transparent; }
        .fl-input:focus { border-color: #ff2d75; }
        .fl-label {
            position: absolute;
            left: 0; top: 1.2rem;
            font-size: 0.9rem;
            color: #6b7280;
            pointer-events: none;
            transition: all 0.25s ease;
            font-family: 'DM Sans', sans-serif;
        }
        .fl-input:focus + .fl-label,
        .fl-input:not(:placeholder-shown) + .fl-label {
            top: 0; font-size: 0.65rem;
            color: #ff2d75;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            font-family: 'Syne', sans-serif;
        }
        .fl-line {
            position: absolute;
            bottom: 0; left: 0;
            height: 2px; width: 0;
            background: linear-gradient(90deg, #ff2d75, #7c3aed);
            transition: width 0.4s ease;
        }
        .fl-input:focus ~ .fl-line { width: 100%; }

        /* SERVICE CHIPS */
        .service-chip {
            display: inline-flex; align-items: center; gap: 0.4rem;
            padding: 0.6rem 1.1rem; border: 1px solid #2a0f18;
            border-radius: 0.5rem; cursor: pointer;
            font-size: 0.8rem; font-family: 'Syne', sans-serif;
            font-weight: 700; color: #6b7280;
            transition: all 0.2s; user-select: none;
            background: transparent;
        }
        .service-chip:hover { border-color: rgba(255,45,117,0.5); color: #fff; }
        .service-chip.selected {
            border-color: #ff2d75;
            background: rgba(255,45,117,0.1);
            color: #ff2d75;
        }
        .service-chip.selected-purple {
            border-color: #7c3aed;
            background: rgba(124,58,237,0.1);
            color: #7c3aed;
        }

        /* BUDGET SLIDER */
        .budget-slider {
            -webkit-appearance: none; appearance: none;
            width: 100%; height: 2px;
            background: linear-gradient(90deg, #ff2d75 var(--pct, 30%), #2a0f18 var(--pct, 30%));
            outline: none; border-radius: 2px; margin-top: 0.5rem;
        }
        .budget-slider::-webkit-slider-thumb {
            -webkit-appearance: none; appearance: none;
            width: 20px; height: 20px; border-radius: 50%;
            background: #ff2d75;
            box-shadow: 0 0 12px rgba(255,45,117,0.6);
            cursor: pointer; border: 2px solid #050505;
        }
        .budget-slider::-moz-range-thumb {
            width: 20px; height: 20px; border-radius: 50%;
            background: #ff2d75; cursor: pointer;
            border: 2px solid #050505;
            box-shadow: 0 0 12px rgba(255,45,117,0.6);
        }
        .social-btn {
            width: 38px;
            height: 38px;
            border-radius: 8px;
            border: 1px solid #2a0f18;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6b7280;
            font-size: 14px;
            transition: all 0.2s ease;
        }

        .social-btn:hover {
            border-color: #ff2d75;
            color: #ff2d75;
            transform: translateY(-3px);
        }
        /* STEP WIZARD */
        .form-step { display: none; animation: stepIn 0.4s ease forwards; }
        .form-step.active { display: block; }
        @keyframes stepIn {
            from { opacity: 0; transform: translateX(20px); }
            to { opacity: 1; transform: translateX(0); }
        }
        .step-dot {
            width: 32px; height: 32px; border-radius: 50%;
            border: 1px solid #2a0f18; display: flex;
            align-items: center; justify-content: center;
            font-size: 0.7rem; font-weight: 800;
            font-family: 'Syne', sans-serif; transition: all 0.3s;
            color: #4b5563; flex-shrink: 0;
        }
        .step-dot.done { background: #ff2d75; border-color: #ff2d75; color: white; }
        .step-dot.current { border-color: #ff2d75; color: #ff2d75; box-shadow: 0 0 12px rgba(255,45,117,0.3); }
        .step-line { flex: 1; height: 1px; background: #2a0f18; transition: background 0.4s; }
        .step-line.done { background: #ff2d75; }
/* contactus end */