:root {
    --bg-main: #0b0c10;
    --bg-secondary: #12141c;
    --accent-lime: #b5ff1b; 
    --accent-lime-hover: #9ee610;
    --text-white: #ffffff;
    --text-muted: #94a3b8;
    --card-light-bg: #ffffff;
    --text-dark: #111827;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-white);
}

body {
    overflow-x: hidden;
}

/* Navbar styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 12, 16, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo .dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-lime);
    border-radius: 50%;
}

.logo .highlight {
    color: var(--accent-lime);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-lime);
}

.nav-btn {
    text-decoration: none;
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-btn:hover {
    background-color: var(--text-white);
    color: var(--text-dark);
}

/* Hero Wrapper Setup */
.hero-wrapper {
    padding: 120px 20px 60px 20px;
    max-width: 1250px;
    margin: 0 auto;
}

.hero-card {
    background-color: var(--card-light-bg);
    color: var(--text-dark);
    border-radius: 36px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f1f5f9;
    color: var(--text-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.badge i {
    color: #ef4444;
}

.hero-card h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.hero-card .dark-text {
    color: transparent;
    background: linear-gradient(135deg, #111827 30%, #4b5563 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-subtitle {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.btn-dark {
    display: inline-block;
    background-color: var(--text-dark);
    color: var(--text-white);
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.3s;
}

.btn-dark:hover {
    background-color: #1f2937;
}

.btn-outline-dark {
    display: inline-block;
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid #e5e7eb;
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}

.btn-outline-dark:hover {
    border-color: var(--text-dark);
    background-color: rgba(0, 0, 0, 0.02);
}

.portrait-frame {
    position: relative;
    width: 100%;
    height: 380px;
}

.portrait-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    position: relative; 
    overflow: hidden;   
}

.placeholder-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1; 
    filter: brightness(0.65); 
}

.portrait-placeholder i, 
.portrait-placeholder span {
    position: relative;
    z-index: 2; 
    color: #ffffff; 
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8); 
}

.portrait-placeholder i {
    font-size: 44px;
}

.portrait-placeholder span {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.experience-badge {
    position: absolute;
    bottom: -15px;
    left: -20px;
    background-color: var(--accent-lime);
    color: var(--text-dark);
    padding: 16px 24px;
    border-radius: 20px;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
    z-index: 3;
}

.experience-badge h3 {
    font-size: 22px;
    font-weight: 800;
}

.experience-badge p {
    font-size: 12px;
    font-weight: 600;
    color: #374151;
}

/* Philosophy Layout */
.philosophy-section {
    padding: 60px 20px 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tagline {
    color: var(--accent-lime);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.phil-left h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 40px;
}

.image-stack {
    display: flex;
    gap: 20px;
}

.stack-box {
    flex: 1;
    background-color: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stack-box i {
    font-size: 32px;
    color: var(--accent-lime);
}

.stack-box.b2 {
    margin-top: 30px;
}

.phil-right p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(181, 255, 27, 0.1);
    color: var(--accent-lime);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
}

/* Interactive Services Setup */
.services-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 50px;
}

.section-header .small-title {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 800;
}

.lime-text {
    color: var(--accent-lime);
}

.services-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-row {
    background-color: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
}

.service-row .num {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-muted);
    transition: color 0.3s;
}

.service-row .row-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.service-row .row-content p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
    max-width: 480px;
}

.service-row .arrow {
    margin-left: auto;
    font-size: 18px;
    color: var(--text-muted);
    transition: transform 0.3s, color 0.3s;
}

.service-row:hover, .service-row.active {
    border-color: var(--accent-lime);
    background-color: rgba(181, 255, 27, 0.02);
}

.service-row.active .num, .service-row.active .arrow {
    color: var(--accent-lime);
}

.service-row.active .arrow {
    transform: translateX(5px);
}

/* Service Display Component Box */
.services-display {
    background-color: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 30px;
    display: flex;
    align-items: center;
}

.display-card-inner {
    width: 100%;
}

.display-media-placeholder {
    width: 100%;
    height: 240px;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    margin-bottom: 24px;
}

.service-display-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.display-info h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.display-info p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.lime-tag {
    display: inline-block;
    background-color: var(--accent-lime);
    color: var(--text-dark);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Marquee Scroller ticker */
.marquee-container {
    background-color: var(--accent-lime);
    color: var(--text-dark);
    padding: 20px 0;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 1px;
}

.marquee-content {
    display: inline-flex;
    animation: marquee-loop 20s linear infinite;
    gap: 40px;
}

.marquee-content span {
    display: inline-flex;
    align-items: center;
    gap: 40px;
}

@keyframes marquee-loop {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

/* Contact Section Setup */
.contact-section {
    padding: 100px 20px 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background-color: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-left h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 16px;
}

.contact-left p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 36px;
}

.contact-meta {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-white);
    font-weight: 500;
    font-size: 15px;
}

.meta-item i {
    color: var(--accent-lime);
}

.contact-right {
    width: 100%;
}

.agency-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}

.input-group input {
    background-color: var(--bg-main) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: var(--text-white) !important;
    padding: 14px 18px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    width: 100%;
    display: block;
    transition: border-color 0.3s;
}

.input-group input:focus {
    outline: none;
    border-color: var(--accent-lime) !important;
}

.form-submit-btn {
    background-color: var(--accent-lime);
    color: var(--text-dark);
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.form-submit-btn:hover {
    background-color: var(--accent-lime-hover);
}

.success-box {
    text-align: center;
    padding: 40px 20px;
}

.success-box i {
    font-size: 48px;
    color: var(--accent-lime);
    margin-bottom: 16px;
}

.success-box h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.success-box p {
    color: var(--text-muted);
    font-size: 14px;
}

.hidden {
    display: none !important;
}

/* Footer Accent block styling */
.footer {
    background-color: var(--accent-lime);
    color: var(--text-dark);
    margin-top: 60px;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    padding: 60px 40px 30px 40px;
}

.footer-top {
    max-width: 1150px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-brand {
    font-size: 24px;
    font-weight: 800;
    max-width: 320px;
}

.footer-brand p {
    font-size: 14px;
    font-weight: 500;
    color: #27272a;
    margin-top: 12px;
    line-height: 1.5;
}

.footer-grid-links {
    display: flex;
    gap: 80px;
}

.link-col h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.link-col a {
    display: block;
    text-decoration: none;
    color: #27272a;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
    transition: opacity 0.2s;
}

.link-col a:hover {
    opacity: 0.7;
}

.footer-bottom {
    max-width: 1150px;
    margin: 20px auto 0 auto;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #3f3f46;
}

/* Responsive configurations */
@media (max-width: 968px) {

    .nav-container{
        flex-direction: column;
        gap: 15px;
    }

    .nav-links{
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-btn{
        display: none;
    }

    .hero-card,
    .philosophy-grid,
    .services-layout,
    .contact-card{
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-card{
        padding: 30px;
    }

    .hero-card h1{
        font-size: 36px;
    }

    .hero-actions{
        flex-direction: column;
    }

    .btn-dark,
    .btn-outline-dark{
        width: 100%;
        text-align: center;
    }

    .footer-top{
        flex-direction: column;
        gap: 40px;
    }
    
}
