:root {
    --primary-purple: #9E0081;
    --accent-pink: #D60056;
    --dark-gray: #3B3838;
    --pure-white: #FFFFFF;
    --pure-black: #000000;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --border-color: rgba(255, 255, 255, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    font-family: var(--font-main); 
    background-color: var(--pure-black); 
    color: var(--pure-white); 
    overflow-x: hidden; 
    line-height: 1.6; 
}

/* --- UTILITIES --- */
.container { max-width: 1400px; margin: 0 auto; padding: 0 30px; position: relative; z-index: 2; }
a { text-decoration: none; color: inherit; }
h1, h2, h3 { font-weight: 800; }
.section-header { text-align: center; margin-bottom: 5rem; }
.section-subtitle { display: inline-block; text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 1rem; color: #888; }
.section-title { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.2; }
.gradient-text { background: linear-gradient(135deg, var(--accent-pink), var(--primary-purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-label { display: inline-block; padding: 8px 20px; background: var(--primary-purple); color: var(--pure-white); border-radius: 50px; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }

/* --- BACKGROUND --- */
#warp-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }

/* --- HEADER --- */
.main-header { 
    position: fixed; 
    top: 0; 
    width: 100%; 
    padding: 20px 0; 
    z-index: 1000; 
    background: rgba(10, 10, 10, 0.9); 
    backdrop-filter: blur(10px); 
    border-bottom: 1px solid var(--border-color); 
}
.main-header .container { display: flex; justify-content: space-between; align-items: center; }
.logo img { max-height: 45px; }
.main-nav ul { display: flex; gap: 40px; list-style: none; }
.main-nav ul li a { font-weight: 600; font-size: 15px; transition: var(--transition); }
.main-nav ul li a:hover { color: var(--accent-pink); }
.btn-header-quote { 
    border: 2px solid var(--primary-purple); 
    padding: 10px 25px; 
    border-radius: 50px; 
    font-weight: 700; 
    transition: var(--transition); 
}
.btn-header-quote:hover { background: var(--accent-pink); border-color: var(--accent-pink); }
.mobile-nav-toggle { display: none; background: none; border: none; font-size: 1.8rem; color: white; cursor: pointer; }

/* --- MOBILE MENU --- */
.mobile-nav { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--pure-black); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transform: translateX(100%); transition: transform 0.4s ease; }
.mobile-nav.active { transform: translateX(0); }
.mobile-nav ul { list-style: none; text-align: center; }
.mobile-nav ul li { margin: 20px 0; }
.mobile-nav ul li a { font-size: 2rem; font-weight: 700; }
.mobile-nav-close { position: absolute; top: 30px; right: 30px; background: none; border: none; color: white; font-size: 2.5rem; cursor: pointer; }

/* --- HERO SECTION --- */
.hero-section { 
    position: relative; 
    min-height: 100vh; 
    padding-top: 140px; 
    padding-bottom: 80px;
    display: flex; 
    align-items: center; 
    overflow: hidden; 
}
.hero-slider-container { width: 100%; position: relative; }
.hero-slide { display: none; opacity: 0; transition: opacity 0.5s ease; }
.hero-slide.active { display: block; opacity: 1; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-left { text-align: left; }
.hero-tag { display: inline-flex; align-items: center; gap: 10px; padding: 10px 20px; background: var(--dark-gray); border-radius: 50px; font-size: 14px; font-weight: 600; margin-bottom: 30px; }
.hero-tag i { color: var(--accent-pink); }
.hero-title { font-size: clamp(3rem, 5vw, 5rem); line-height: 1.1; margin-bottom: 25px; }
.hero-description { font-size: 1.1rem; line-height: 1.8; color: rgba(255,255,255,0.7); margin-bottom: 40px; max-width: 550px; }
.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; }
.btn-primary { padding: 16px 35px; background: var(--accent-pink); border: 2px solid var(--accent-pink); border-radius: 50px; font-weight: 700; transition: var(--transition); cursor: pointer; color: white; display: inline-block; }
.btn-primary:hover { background: var(--primary-purple); border-color: var(--primary-purple); transform: translateY(-3px); }

.hero-right { position: relative; height: 600px; width: 100%; }
.hero-card { 
    position: absolute; 
    background: rgba(59, 56, 56, 0.7); 
    backdrop-filter: blur(15px); 
    border: 1px solid var(--border-color); 
    border-radius: 20px; 
    padding: 25px; 
    width: 260px; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.5); 
    transition: transform 0.3s ease;
}
.pos-top-left { top: 0; left: 0; z-index: 2; }
.pos-center-right { top: 160px; right: 0; background: var(--primary-purple); z-index: 3; }
.pos-bottom-left { bottom: 20px; left: 40px; background: var(--accent-pink); z-index: 4; }
.card-icon { width: 50px; height: 50px; background: rgba(255,255,255,0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 15px; }
.hero-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.hero-card p { font-size: 0.9rem; opacity: 0.9; line-height: 1.5; }

.slider-dots { display: flex; gap: 10px; justify-content: center; margin-top: 40px; }
.slider-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: 0.3s; }
.slider-dot.active { background: var(--accent-pink); transform: scale(1.2); }

/* --- MARQUEE SECTION --- */
.marquee-section { 
    background-color: var(--primary-purple); 
    padding: 25px 0; 
    width: 100%; 
    overflow: hidden; 
    white-space: nowrap; 
    position: relative; 
    z-index: 5;
}
.marquee-wrapper { display: inline-block; animation: marquee 25s linear infinite; }
.marquee-content { display: flex; align-items: center; }
.marquee-content span { 
    font-size: 1.4rem; 
    font-weight: 800; 
    margin: 0 40px; 
    display: flex; 
    align-items: center; 
    color: var(--pure-white); 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}
.marquee-content i { margin-right: 15px; font-size: 1rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- ABOUT SECTION (FIXED FONT SIZES) --- */
.about-section { padding: 120px 0; position: relative; z-index: 1; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-content h2 { 
    font-size: clamp(2.5rem, 4.5vw, 3.8rem); 
    line-height: 1.2; 
    margin-bottom: 25px; 
}
.about-content p { 
    font-size: 1.15rem; 
    line-height: 1.8; 
    color: rgba(255,255,255,0.7); 
    margin-bottom: 40px; 
    max-width: 600px;
}
.about-image-container { display: flex; justify-content: center; }
.floating-image { 
    width: 100%; 
    max-width: 500px; 
    border-radius: 20px; 
    box-shadow: 0 30px 60px rgba(0,0,0,0.5); 
    animation: float 4s ease-in-out infinite; 
}
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0px); } }

/* --- SERVICES SECTION --- */
.services-section { padding: 120px 0; border-top: 1px solid var(--border-color); position: relative; z-index: 1; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-top: 4rem; }
.service-card { background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border-color); border-radius: 20px; padding: 40px; transition: var(--transition); backdrop-filter: blur(10px); }
.service-card:hover { transform: translateY(-10px); border-color: rgba(214, 0, 86, 0.5); box-shadow: 0 15px 35px rgba(214, 0, 86, 0.2); }
.service-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.service-card-icon { font-size: 2rem; color: var(--accent-pink); }
.service-card-num { font-size: 1rem; font-weight: 700; color: #888; }
.service-card-body h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.service-card-body p { color: #aaa; }
.service-card-footer { margin-top: 2rem; }
.service-arrow { font-size: 1.5rem; opacity: 0; transform: translateX(-10px); transition: var(--hover-transition); }
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* --- FIXED CLIENTS SECTION --- */
.navadisha-clients-section {
    padding: 80px 0;
    background-color: #000;
    overflow: hidden;
    width: 100%;
}

.marquee-wrapper-fixed {
    width: 100vw; /* Full screen width */
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.marquee-track-fixed {
    display: flex !important;           /* Force flexbox */
    flex-direction: row !important;     /* Force horizontal */
    flex-wrap: nowrap !important;       /* PREVENTS LINE-BY-LINE STACKING */
    width: fit-content;                 /* Container expands to fit all logos */
    animation: marquee-infinite 25s linear infinite;
}

.logo-item-fixed {
    flex: 0 0 250px;                    /* PREVENTS SQUISHING: width is locked at 250px */
    padding: 0 15px;
    box-sizing: border-box;
}

.logo-card-fixed {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;                      /* Uniform height */
    background-color: #ffffff;          /* White cards */
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.05);
}

.logo-card-fixed img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;                /* Perfect resizing */
    display: block;
}

/* Perfect Loop Animation */
@keyframes marquee-infinite {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.33%); } /* Moves by one full set of 4 logos */
}

/* MOBILE FIX: Keep it on one line but shrink the cards slightly */
@media (max-width: 768px) {
    .logo-item-fixed {
        flex: 0 0 180px;                /* Cards are 180px wide on phones */
    }
    .logo-card-fixed {
        height: 80px;
        padding: 10px;
    }
}


/* --- PROCESS SECTION --- */
.process-section { padding: 120px 0; background: radial-gradient(circle at center, rgba(158, 0, 129, 0.15) 0%, transparent 70%); position: relative; z-index: 1; }
.timeline-wrapper { position: relative; max-width: 800px; margin: 4rem auto 0; padding-left: 50px; }
.timeline-progress { position: absolute; top: 0; left: 0; width: 2px; height: 100%; background: var(--border-color); transform-origin: top; box-shadow: 0 0 10px rgba(158, 0, 129, 0.5); }
.timeline-item { position: relative; padding-bottom: 80px; }
.timeline-item::before { content: ''; position: absolute; left: -60px; top: 5px; width: 20px; height: 20px; border-radius: 50%; background: #2e0025; border: 2px solid var(--primary-purple); z-index: 2; box-shadow: 0 0 15px var(--primary-purple), 0 0 30px var(--primary-purple); transition: var(--transition); }
.timeline-item:hover::before { background: var(--primary-purple); transform: scale(1.2); box-shadow: 0 0 25px var(--accent-pink); }
.timeline-content { opacity: 0; transform: translateY(30px); }
.timeline-step { font-size: 1rem; font-weight: 700; color: var(--accent-pink); margin-bottom: 1rem; display: block; text-shadow: 0 0 10px rgba(214, 0, 86, 0.5); }
.timeline-item h3 { font-size: 2rem; margin-bottom: 1rem; }
.timeline-item p { color: #aaa; }

/* --- WHY US SECTION --- */
.why-choose-us-section { padding: 120px 0; position: relative; z-index: 1; }
.why-choose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-top: 4rem; align-items: flex-start; }
.feature-item { padding: 30px; border-bottom: 1px solid var(--border-color); cursor: pointer; }
.feature-item h3 { font-size: 1.5rem; margin-bottom: 0.5rem; transition: var(--hover-transition); color: #888; }
.feature-item p { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; color: #aaa; }
.feature-item.active h3 { color: var(--accent-pink); }
.feature-item.active p { max-height: 100px; }
.why-choose-images { position: relative; height: 500px; border-radius: 20px; overflow: hidden; }
.feature-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.5s ease, transform 0.5s ease; transform: scale(1.05); }
.feature-image.active { opacity: 1; transform: scale(1); }

/* --- TESTIMONIALS --- */
.testimonials-section { padding: 120px 0; background-color: var(--dark-gray); position: relative; z-index: 1; }
.testimonial-container { max-width: 800px; margin: 0 auto; text-align: center; position: relative; height: 300px; }
.testimonial-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease-in-out; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.testimonial-slide.active { opacity: 1; }
.testimonial-quote { font-size: 1.5rem; font-style: italic; margin-bottom: 2rem; color: #ddd; }
.testimonial-author { font-weight: 700; font-size: 1.1rem; color: var(--accent-pink); }
.testimonial-author span { color: #aaa; font-weight: 400; }
.testimonial-dots { display: flex; gap: 15px; justify-content: center; margin-top: 2rem; }
.testimonial-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.2); cursor: pointer; transition: 0.3s; }
.testimonial-dot.active { background: var(--accent-pink); }

/* --- CONTACT SECTION (FIXED ALIGNMENT) --- */
.contact-section { padding: 120px 0; background-color: #0A0A0A; position: relative; z-index: 1; }
.contact-container { max-width: 800px; margin: 0 auto; text-align: center; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 50px; }
.form-group { position: relative; text-align: left; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group input, .form-group textarea { width: 100%; padding: 18px 20px; background: #1a1a1a; border: 2px solid rgba(255, 255, 255, 0.1); border-radius: 10px; color: var(--pure-white); font-family: var(--font-main); font-size: 16px; transition: var(--transition); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent-pink); }
.form-group textarea { resize: vertical; min-height: 150px; }
.submit-btn { grid-column: 1 / -1; padding: 18px 40px; background: var(--accent-pink); border: none; border-radius: 50px; color: var(--pure-white); font-weight: 700; font-size: 16px; cursor: pointer; transition: var(--transition); margin-top: 10px; }
.submit-btn:hover { background: var(--primary-purple); transform: translateY(-3px); }
#form-message { display: none; margin-top: 20px; padding: 15px; border-radius: 8px; font-weight: 600; }
#form-message.success { background: rgba(0, 255, 136, 0.1); color: #00ff88; border: 1px solid #00ff88; }
#form-message.error { background: rgba(255, 0, 0, 0.1); color: #ff5555; border: 1px solid #ff5555; }

/* --- FOOTER --- */
.main-footer { padding: 60px 0 30px; border-top: 1px solid var(--border-color); position: relative; z-index: 1; }
.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.footer-logo img { max-height: 40px; }
.footer-links { display: flex; gap: 40px; }
.footer-links a { font-weight: 600; transition: var(--transition); }
.footer-links a:hover { color: var(--accent-pink); }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid var(--border-color); color: rgba(255, 255, 255, 0.5); }

/* --- MEDIA QUERIES (Mobile Compatibility) --- */
@media (max-width: 992px) {
    .main-nav, .btn-header-quote { display: none; }
    .mobile-nav-toggle { display: block; }
    .hero-grid, .about-grid, .why-choose-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-section { text-align: center; padding-top: 120px; height: auto; display: block; }
    .hero-left { text-align: center; margin-bottom: 50px; }
    .hero-buttons { justify-content: center; }
    .about-image-container { order: -1; }
    .hero-right { height: auto; display: flex; flex-direction: column; gap: 20px; align-items: center; margin-top: 40px; }
    .hero-card { position: relative; top: auto !important; left: auto !important; right: auto !important; bottom: auto !important; width: 100%; max-width: 320px; }
     .service-card, .work-card {
        margin: 0 auto;
        width: 100%;
        max-width: 100%; /* Ensures it stays within the container */
    }
    
    .service-grid, {
        gap: 20px;
        /* Ensures cards stack perfectly on narrow phones */
        grid-template-columns: 1fr; 
    }
    .contact-form { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; gap: 30px; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
}