@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500&display=swap");
.logo {
    max-width: 120px;
    height: 
}

:root {
    --pink: #ff6bb5;
    --pink-dark: #ff4c9d;
    --blue: #1e1f4b;
    --blue-bright: #3a3cbe;
    --cyan: #58d3ff;
    --orange: #ff8a3c;
    --cream: #fff7fb;
    --night: #08091a;
    --text: #f5f5ff;
    --muted: rgba(245, 245, 255, 0.7);
    --card: rgba(255, 255, 255, 0.08);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Space Grotesk", "Inter", sans-serif;
    background: var(--night) ;
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

p {
    margin: 0 0 1rem;
}

h1,
h2,
h3,
h4 {
    font-weight: 600;
    margin: 0 0 1rem;
}

section {
    padding: 5rem 0;
}

.page-shell {
   
    width: min(1200px, 90vw);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    background:#1e1f4b; ;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-weight: 700;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    color: var(--pink);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    letter-spacing: 0.05rem;
    color: var(--muted);
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--pink);
}

.btn {
    border: none;
    padding: 0.8rem 1.4rem;
    border-radius: 999px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1rem;
    background: linear-gradient(120deg, var(--pink), var(--orange));
    color: #08091a;
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(255, 107, 181, 0.35);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--text);
    padding: 0.6rem;
    border-radius: 8px;
}

.hero {
    position: relative;
    padding: 6rem 0 4rem;
    overflow: hidden;
}

.contact-hero {
    padding-left: clamp(1.25rem, 5vw, 3.5rem);
    padding-right: clamp(1.25rem, 5vw, 3.5rem);
}

.contact-hero .hero-grid {
    padding-left: clamp(0.5rem, 4vw, 2rem);
    padding-right: clamp(0.5rem, 4vw, 2rem);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.35;
    animation: float 12s ease-in-out infinite;
}

.hero::before {
    background: var(--pink);
    top: -30%;
    left: -10%;
}

.hero::after {
    background: var(--blue-bright);
    bottom: -25%;
    right: -5%;
    animation-delay: 2s;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.hero-copy h1 {
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    line-height: 1.1;
}

.hero-copy .tagline {
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 1.25rem;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.25rem;
    text-align: center;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.35);
}

.hero-stat strong {
    display: block;
    font-size: 2rem;
    color: var(--pink);
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.pill {
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
    letter-spacing: 0.07rem;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-intro {
    color: var(--muted);
    max-width: 640px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.card {
    padding: 2rem;
    border-radius: 28px;
    background: #ea673a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 30px 40px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s ease;
}

.cards-grid .card,
.marketing-modules .card,
.web-modules .card {
    background: #ea673a !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.card h3,
.card p,
.card .tag {
    color: #fff;
}

.card:hover {
    transform: translateY(-10px);
}

.card h3 {
    color: var(--pink);
    margin-bottom: 1rem;
}

.card p {
    color: var(--muted);
    flex: 1;
}

.card .tag {
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    font-size: 0.75rem;
    color: var(--orange);
}

.card.card-light {
    background: #f4c7df !important;
    color: #111 !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
}

.card.card-light * {
    color: #111 !important;
}

.duo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: center;
}

.gradient-box {
    background: linear-gradient(145deg, rgba(255, 107, 181, 0.3), rgba(58, 60, 190, 0.3));
    border-radius: 30px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 70px rgba(0, 0, 0, 0.4);
}

.stacked-images {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    margin: auto;
    gap: 1.5rem;
}

.stacked-images img {
    display: block;
    max-width: 100%;
    height: auto;
}

.bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bullet-list li {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--muted);
}

.cta-panel {
    text-align: center;
    background: linear-gradient(120deg, rgba(255, 107, 181, 0.25), rgba(255, 138, 60, 0.2));
    border-radius: 40px;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.cta-panel h2 {
    margin-bottom: 0.5rem;
}

.cta-panel p {
    color: var(--muted);
}

.site-footer {
    padding: 3rem 0 2rem;
    background: rgba(5, 6, 20, 0.95);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-bottom {
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.hero-media {
    position: relative;
    border-radius: 30px;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.08));
    min-height: 360px;
}

.hero-figure {
    position: relative;
    width: min(200px, 55vw);
    margin: 0 auto;
    padding: 2.5rem 0 1.5rem;
}

.hero-figure img {
    display: block;
    max-width: 100%;
    height: auto;
}

.hero-figure-point {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    opacity: 0.65;
    z-index: 0;
    animation: float 7s ease-in-out infinite;
}

.hero-figure-script {
    position: absolute;
    right: -80px;
    top: 40%;
    width: 160px;
    transform: rotate(-90deg);
    transform-origin: center;
    z-index: 2;
}

.hero-figure-logo {
    position: relative;
    z-index: 1;
    margin-top: 20px;
    animation: float 6s ease-in-out infinite;
}

.hero-photo-stack {
    position: relative;
    width: min(200px, 55vw);
    height: 220px;
    margin: 0 auto;
    padding: 1.5rem 0 1rem;
}

.hero-photo-base {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    z-index: 0;
}

.hero-photo-text {
    position: relative;
    display: block;
    width: 110px;
    margin: 90px auto 0;
    z-index: 1;
}

.orbit {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbit 18s linear infinite;
}

.orbit-dot {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--orange);
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-media .blob {
    position: absolute;
    inset: 20%;
    border-radius: 32% 68% 40% 60% / 50% 40% 60% 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), transparent 60%), var(--pink-dark);
    animation: morph 16s ease-in-out infinite;
}

.hero-media .badge {
    position: absolute;
    bottom: 12%;
    right: 12%;
    background: #fff;
    color: var(--blue);
    padding: 1rem 1.25rem;
    border-radius: 18px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.25);
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.photo-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/5;
    background: rgba(255, 255, 255, 0.05);
}

.photo-card-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.photo-card:nth-child(odd) {
    background: linear-gradient(160deg, rgba(255, 107, 181, 0.5), rgba(58, 60, 190, 0.5));
}

.photo-card:nth-child(even) {
    background: linear-gradient(160deg, rgba(255, 138, 60, 0.5), rgba(88, 211, 255, 0.5));
}

.photo-card span {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    font-size: 0.8rem;
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #0b0c22;
    display: block;
}

.scroll-carousel {
    margin-top: 4rem;
    padding: 3rem 2rem;
    border-radius: 32px;
    background: rgba(8, 9, 26, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.agni-carousel {
    background: radial-gradient(circle at top left, rgba(255, 107, 181, 0.25), rgba(58, 60, 190, 0.5));
}

.moodboard-carousel {
    background: linear-gradient(135deg, rgba(255, 138, 60, 0.25), rgba(58, 60, 190, 0.35));
}

.scroll-carousel-header {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.scroll-carousel-controls {
    display: flex;
    gap: 0.75rem;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.3);
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.carousel-btn:hover {
    transform: translateY(-2px);
    border-color: var(--pink);
}

.scroll-carousel-track {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
}

.scroll-carousel-track::-webkit-scrollbar {
    height: 6px;
}

.scroll-carousel-track::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 999px;
}

.scroll-slide {
    flex: 0 0 clamp(200px, 28vw, 320px);
    scroll-snap-align: start;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.25);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.35);
    position: relative;
}

.scroll-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.slide-tag {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.55);
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.portrait-hero-img {
    width: 100%;
    max-width: 420px;
    border-radius: 32px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
    display: block;
    margin: 0 auto;
}

.web-modules,
.marketing-modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.marketing-photo-row {
    display: flex;
    gap: 1.25rem;
    margin-top: 3.5rem;
    flex-wrap: wrap;
}

.marketing-photo-row .photo-card {
    flex: 1 1 calc(25% - 1rem);
    min-width: 200px;
}

.marketing-chart {
    margin: 5rem auto 4rem;
}

.marketing-chart img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

@media (max-width: 900px) {
    .marketing-photo-row .photo-card {
        flex: 1 1 calc(50% - 1rem);
    }
}

@media (max-width: 600px) {
    .marketing-photo-row .photo-card {
        flex: 1 1 100%;
    }
}

.module {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

form {
    display: grid;
    gap: 1rem;
}

input,
textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    font-family: inherit;
}

textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    padding: 2rem;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes orbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes morph {
    0%,
    100% {
        border-radius: 32% 68% 40% 60% / 50% 40% 60% 50%;
    }
    50% {
        border-radius: 60% 40% 65% 35% / 45% 55% 35% 65%;
    }
}

@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100vh;
        padding: 4rem 1.5rem;
        background: rgba(8, 9, 26, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateY(-110%);
        transition: transform 0.35s ease;
        z-index: 999;
    }

    .nav-links.is-open {
        transform: translateY(0);
    }

    .menu-toggle {
        display: inline-flex;
        z-index: 1000;
    }

    .site-header .btn {
        display: none;
    }
}

.tablea,
.tableau {
    display: block;
    margin: 2rem auto;
}
