/* 1. BRAND COLORS */
:root {
    --dev-green: #10b981;
    --dev-dark: #064e3b;
    --white: #ffffff;
    --bulb-off: #cbd5e1;
    --glow: rgba(16, 185, 129, 0.4);
}

/* 2. CORE LAYOUT */
body {
    margin: 0;
    background-color: var(--white);
    font-family: 'Outfit', sans-serif;
    color: var(--dev-dark);
    overflow-x: hidden;
}

.nav-blur {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    z-index: 100;
}

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

/* 3. BULB POSITIONING (NOW ON RIGHT) */
#canvas-container {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: flex-end; /* Flipped to move bulb to right */
    align-items: center;
    padding-right: 10%; /* Changed from padding-left to padding-right */
    z-index: 1;
    pointer-events: none; 
}

/* 4. TEXT POSITIONING (NOW ON LEFT) */
.content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    display: flex;
    justify-content: flex-start; /* Flipped to move text to left */
}

.max-w-xl {
    width: 100%;
    max-width: 600px;
}

/* 5. INTERACTIVE BULB DESIGN */
.bulb-wrapper {
    position: relative;
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: auto;
    cursor: pointer;
    animation: float 4s ease-in-out infinite; /* Added a gentle float effect */
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.bulb-glass {
    width: 130px;
    height: 130px;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid var(--bulb-off);
    border-radius: 50% 50% 45% 45%;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.filament {
    position: absolute;
    top: 45px;
    width: 35px;
    height: 45px;
    border: 2px solid var(--bulb-off);
    border-bottom: none;
    border-radius: 18px 18px 0 0;
    transition: all 0.5s ease;
}

.bulb-base {
    width: 55px;
    height: 45px;
    background: #64748b;
    margin-top: -5px;
    border-radius: 0 0 8px 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}
.bulb-base span { width: 80%; height: 2px; background: #334155; }

/* 6. HOVER STATES */
.bulb-wrapper:hover .bulb-glass {
    border-color: var(--dev-green);
    box-shadow: 0 0 60px var(--glow), inset 0 0 30px var(--glow);
    background: rgba(16, 185, 129, 0.05);
}

.bulb-wrapper:hover .filament {
    border-color: var(--dev-green);
    filter: drop-shadow(0 0 10px var(--dev-green));
}

.light-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 0;
}

.bulb-wrapper:hover .light-glow {
    opacity: 1;
}

/* 7. TYPOGRAPHY */
.logo-text { font-weight: 800; font-size: 1.5rem; color: var(--dev-dark); }
.badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: #ecfdf5;
    color: #047857;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
}
.accent-text { color: var(--dev-green); }
.hero-description {
    font-size: 1.25rem;
    color: rgba(6, 78, 59, 0.8);
    margin-bottom: 2.5rem;
}
.btn-green {
    background-color: var(--dev-green);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    border: none;
}
.btn-green:hover { background-color: var(--dev-dark); transform: translateY(-2px); }
.learn-more { font-weight: 700; color: var(--dev-dark); text-decoration: none; }

/* 8. MOBILE RESPONSIVE */
@media (max-width: 1024px) {
    .content-wrapper { justify-content: center; text-align: center; }
    #canvas-container { 
        padding-right: 0; 
        justify-content: center; 
        opacity: 0.2; /* Faded background bulb on mobile */
    }
    .hero-title { font-size: 3rem; }
}
/* mission */

/* Info Section Styles */
.info-section {
    padding: 100px 0;
    background-color: #f9fafb; /* Slightly off-white to separate from Hero */
}

.info-card {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: var(--dev-green);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
}

.card-icon {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--dev-green);
    margin-bottom: 1.5rem;
    font-family: monospace;
}

.info-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dev-dark);
}

.info-card p {
    color: rgba(6, 78, 59, 0.7);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    border-top: 2px solid #e5e7eb;
    transition: border-color 0.3s ease;
}

.value-item:hover {
    border-top-color: var(--dev-green);
}

.value-dot {
    display: block;
    width: 8px;
    height: 8px;
    background: var(--dev-green);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.value-item h4 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.section-tag {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--dev-green);
}

/*services */

/* Matching your existing theme */
.badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(16, 185, 129, 0.1); /* Soft emerald */
    color: #10b981;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-card {
    cursor: pointer;
}

/* Add a slight lift effect on hover */
.service-card:hover {
    transform: translateY(-5px);
}

/* Clients */

/* Client Logo Section Styling */
.client-logos-section {
    padding: 4rem 0;
    background-color: #f8fafc; /* slate-50 */
    border-top: 1px solid rgba(226, 232, 240, 0.6);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.trust-label {
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #94a3b8; /* slate-400 */
    margin-bottom: 2.5rem;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 3rem;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

/* Hovering over the container brings all logos to color */
.logo-grid:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.logo-item {
    display: flex;
    justify-content: center;
}

.logo-item img {
    height: 2.5rem; /* Equivalent to h-10 */
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-item img:hover {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .logo-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
    .logo-grid { grid-template-columns: repeat(6, 1fr); }
}

/* from us*/ 

/* 1. Basic Item Styling */
.capability-item {
    background: white;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    padding: 0 1.5rem;
}

.capability-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    font-weight: 700;
    color: #0f172a;
    transition: color 0.3s ease;
}

/* 2. Hidden Content */
.capability-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 3. The "Checkbox Hack" Logic */
/* When input is checked, find the sibling label and content */
.acc-input:checked ~ .capability-content {
    max-height: 600px; /* Big enough to fit your content */
    opacity: 1;
    padding-bottom: 1.5rem;
}

.acc-input:checked ~ .capability-trigger {
    color: #059669; /* emerald-600 */
}

/* 4. Icon Animation */
.plus-icon {
    position: relative;
    width: 16px;
    height: 16px;
}
.plus-icon::before, .plus-icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    transition: transform 0.3s ease;
}
/* Horizontal bar */
.plus-icon::before { top: 7px; left: 0; width: 100%; height: 2px; }
/* Vertical bar */
.plus-icon::after { left: 7px; top: 0; width: 2px; height: 100%; }

/* Rotate vertical bar to 0 opacity when open */
.acc-input:checked ~ .capability-trigger .plus-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

/* Team Members */

/* Team Member Image Handling */
.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    opacity: 0.8;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .member-img {
    filter: grayscale(0%) contrast(1);
    opacity: 1;
    transform: scale(1.08);
}

/* Hover Overlay */
.member-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 78, 59, 0.8), transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .member-overlay {
    opacity: 1;
}

/* Social Buttons */
.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #10b981; /* emerald-500 */
    border-color: #10b981;
    transform: translateY(-3px);
}

/* Contact form */

/* Light Mode Contact Inputs */
.contact-input-light {
    background: #ffffff;
    border: 1px solid #e2e8f0; /* slate-200 */
    border-radius: 0.75rem;
    padding: 1rem;
    color: #1e293b; /* slate-800 */
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-input-light:focus {
    border-color: #10b981; /* emerald-500 */
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.08);
}

.contact-input-light::placeholder {
    color: #94a3b8; /* slate-400 */
}

/* Ensure the btn-green is consistent */
.btn-green {
    background-color: #059669;
    color: white;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-green:hover {
    background-color: #047857;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(5, 150, 105, 0.2);
}