html, body {
    max-width: 100vw;
    overflow-x: hidden;
}
/* ==========================================================================
   1. SYSTEM DESIGN TOKENS & ROOT VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --bg-dark: #090314;
    --card-purple: #140b24;
    --border-purple: #251642;
    --accent-violet: #7e22ce;
    --accent-neon: #a855f7;
    --text-pure: #ffffff;
    --text-muted: #b4acc4;
    
    /* Typography Layouts */
    --font-primary: 'Plus Jakarta Sans', sans-serif;
}

/* Reset Defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-pure);
    font-family: var(--font-primary);
    overflow-x: hidden;
    line-height: 1.5;
}

/* Global Reusable Typography Header Framework */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .sub-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-neon);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.3;
}

/* Button & Action Frameworks */
.btn-primary-glow {
    background: linear-gradient(135deg, var(--accent-violet) 0%, #5b149c 100%);
    color: var(--text-pure);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 20px rgba(126, 34, 206, 0.4);
    transition: 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary-glow:hover {
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.7);
    transform: translateY(-2px);
}

.btn-secondary {
    border: 2px solid var(--border-purple);
    background: transparent;
    color: var(--text-pure);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--accent-neon);
    background: rgba(168, 85, 247, 0.05);
}

/* ==========================================================================
   2. LUXURY NAVIGATION HEADER Component
   ========================================================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(9, 3, 20, 0.75);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(37, 22, 66, 0.5);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-pure);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--accent-neon);
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-pure);
}

.btn-nav-cta {
    border: 1px solid var(--accent-neon);
    color: var(--text-pure);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(168, 85, 247, 0.1);
    transition: 0.3s;
}

.btn-nav-cta:hover {
    background: var(--accent-violet);
    box-shadow: 0 0 15px rgba(126, 34, 206, 0.5);
}

/* ==========================================================================
   3. HERO BANNER GRID Component
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 6% 80px 6%;
    text-align: center;
}

.ambient-purple-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(126, 34, 206, 0.25) 0%, rgba(0,0,0,0) 70%);
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.badge-premium {
    background: rgba(168, 85, 247, 0.12);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: var(--accent-neon);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.hero-content h1 span {
    background: linear-gradient(to right, #ffffff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* ==========================================================================
   4. QUALITY SERVICES ACCORDION Component
   ========================================================================== */
.services-section {
    padding: 100px 6%;
    max-width: 1200px;
    margin: 0 auto;
}

.services-accordion-list {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
}

.accordion-row {
    display: grid;
    grid-template-columns: 0.5fr 2fr 3fr 0.5fr;
    align-items: center;
    padding: 35px 20px;
    border-bottom: 1px solid var(--border-purple);
    transition: 0.3s ease;
    cursor: pointer;
}

.accordion-row:first-child {
    border-top: 1px solid var(--border-purple);
}

.row-num {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-neon);
}

.row-title {
    font-size: 1.4rem;
    font-weight: 700;
}

.row-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    padding-right: 30px;
}

.row-arrow {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-align: right;
    transition: 0.3s;
}

.accordion-row:hover {
    background: rgba(20, 11, 36, 0.6);
    border-bottom-color: var(--accent-neon);
}

.accordion-row:hover .row-arrow {
    color: var(--accent-neon);
    transform: rotate(45deg);
}

/* ==========================================================================
   5. RECENT WORKS SHOWCASE Component
   ========================================================================== */
.home-works-section {
    padding: 100px 6%;
    max-width: 1200px;
    margin: 0 auto;
}

.home-works-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.home-work-card {
    background: var(--card-purple);
    border: 2px solid var(--border-purple);
    border-radius: 24px;
    overflow: hidden;
    transition: 0.3s ease;
}

.home-work-card:hover {
    border-color: var(--accent-neon);
    transform: translateY(-5px);
}

.work-image-placeholder {
    background: #160d29;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--accent-neon);
    opacity: 0.6;
}

.work-meta {
    padding: 30px;
}

.work-category {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-neon);
    letter-spacing: 1.5px;
}

.work-meta h3 {
    font-size: 1.4rem;
    margin: 10px 0;
}

.work-meta p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.work-link {
    color: var(--text-pure);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}

.work-link:hover {
    color: var(--accent-neon);
}

.view-all-container {
    text-align: center;
    margin-top: 50px;
}

/* ==========================================================================
   6. PROFESSIONAL & ACADEMIC TIMELINE STRUCTURE
   ========================================================================== */
.experience-section, .education-section {
    padding: 80px 6% 40px 6%;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 40px;
    padding: 35px;
    background: rgba(20, 11, 36, 0.4);
    border-left: 3px solid var(--accent-violet);
    border-radius: 0 24px 24px 0;
    transition: 0.3s;
}

.timeline-item:hover {
    background: rgba(126, 34, 206, 0.08);
    border-left-color: var(--accent-neon);
}

.timeline-date {
    font-weight: 700;
    color: var(--accent-neon);
    font-size: 1.1rem;
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.company-tag {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(168, 85, 247, 0.15);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #e9d5ff;
    margin-bottom: 15px;
}

.timeline-content p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ==========================================================================
   7. TECH STACK PILLS Component
   ========================================================================== */
.home-skills-section {
    padding: 100px 6%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.skills-mini-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.skill-pill {
    background: var(--card-purple);
    border: 2px solid var(--border-purple);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.skill-pill i {
    color: var(--accent-neon);
    font-size: 1.2rem;
}

.skill-pill:hover {
    border-color: var(--accent-neon);
    background: #251542;
    transform: translateY(-3px);
}

/* ==========================================================================
   8. CLIENT STORIES TESTIMONIAL CARDS
   ========================================================================== */
.testimonials-section {
    padding: 100px 6%;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--card-purple);
    border: 2px solid var(--border-purple);
    padding: 40px;
    border-radius: 24px;
    position: relative;
    transition: 0.3s;
}

.testimonial-card:hover {
    border-color: var(--accent-violet);
}

.quote-icon {
    font-size: 2rem;
    color: var(--accent-neon);
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
}

.client-meta strong {
    display: block;
    font-size: 1rem;
    color: var(--text-pure);
}

.client-meta span {
    font-size: 0.8rem;
    color: var(--accent-neon);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   9. INTEGRATED CAPTURE TERMINAL (Let's Work Together)
   ========================================================================== */
.home-contact-cta {
    padding: 100px 6%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-cta-wrapper {
    background: linear-gradient(145deg, #1f1237 0%, #140b24 100%);
    border: 2px solid var(--border-purple);
    padding: 60px;
    border-radius: 32px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.cta-left-text {
    text-align: left;
}

.cta-left-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 16px 0;
    line-height: 1.2;
}

.cta-left-text p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1.05rem;
}

.premium-embedded-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.premium-embedded-form input, 
.premium-embedded-form textarea {
    width: 100%;
    padding: 16px;
    background: #0d061a;
    border: 2px solid var(--border-purple);
    border-radius: 14px;
    color: var(--text-pure);
    outline: none;
    font-family: inherit;
    font-size: 0.95rem;
    transition: 0.3s;
}

.premium-embedded-form input:focus, 
.premium-embedded-form textarea:focus {
    border-color: var(--accent-neon);
    background: #130a24;
}

/* ==========================================================================
   10. LUXURY BRAND ARCHITECTURE FOOTER
   ========================================================================== */
.luxury-footer {
    padding: 80px 6% 40px 6%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--card-purple);
    border: 2px solid var(--border-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: 0.3s;
}

.footer-socials a:hover {
    color: var(--text-pure);
    border-color: var(--accent-neon);
    background: rgba(126, 34, 206, 0.2);
    transform: translateY(-3px);
}

.footer-divider {
    height: 1px;
    background: var(--border-purple);
    margin-bottom: 30px;
}

.copyright-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ==========================================================================
   11. ULTRA-RESPONSIVE MEDIA INQUIRY VIEWPORTS
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 3rem; }
    .accordion-row { grid-template-columns: 0.5fr 2fr 2.5fr; }
    .row-desc { display: none; } /* Drops descriptive block on smaller layouts to maintain cleanly tracking grids */
}

@media (max-width: 768px) {
    .navbar { padding: 15px 4%; }
    .nav-links { display: none; } /* Ready for structural mobile dropdown toggle hooks */
    
    .hero-section { padding-top: 120px; }
    .hero-content h1 { font-size: 2.3rem; }
    .hero-actions { flex-direction: column; gap: 12px; }
    .hero-actions .btn-primary-glow, .hero-actions .btn-secondary { width: 100%; justify-content: center; }

    .section-header h2 { font-size: 1.8rem; }
    
    .accordion-row { grid-template-columns: 0.5fr 4fr 0.5fr; padding: 25px 10px; }
    .row-title { font-size: 1.1rem; }
    
    .home-works-grid, .testimonials-grid { grid-template-columns: 1fr; gap: 24px; }
    .timeline-item { grid-template-columns: 1fr; gap: 12px; padding: 25px; }
    
    .contact-cta-wrapper { grid-template-columns: 1fr; padding: 40px 24px; gap: 35px; }
    .cta-left-text h2 { font-size: 2rem; }
    
    .footer-brand-row { flex-direction: column; gap: 25px; text-align: center; }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 4%;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .nav-links {
        display: flex !important;
        width: 100%;
        order: 3;
        justify-content: center;
        gap: 15px;
        margin-top: 12px;
        padding-top: 10px;
        border-top: 1px solid rgba(168, 85, 247, 0.1);
    }
    .nav-links a {
        font-size: 0.85rem;
    }
    .nav-actions {
        order: 2;
    }
}
.project-display-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Forces the image to perfectly cover the container space */
    object-position: top center; /* Aligns the screenshot from the top so the main header of the site shows */
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Subtle zoom effect on the image when you hover anywhere on the card */
.home-work-card:hover .project-display-img {
    transform: scale(1.06);
}

body {
    transition: background-color 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}