html {
    scroll-behavior: smooth;

}

/* :root {
            --bg: #ffffff;
            --card: #ffffff;
            --text: #111214;
            --muted: #6b6b6b;
            --accent-from: #ff7e00;
            --accent-to: #ff4800;
            --accent-glow: 0 6px 24px rgba(255, 84, 0, 0.18);
            --glass: rgba(255, 255, 255, 0.6);
            --header-height: 76px;
        }

        .dark {
            --bg: #0f1113;
            --card: #141516;
            --text: #f3f4f6;
            --muted: #bdbdbd;
            --glass: rgba(12, 12, 12, 0.5);
        } */


:root {
    --bg: #ffffff;
    --card: #ffffff;
    --text: #111214;
    --muted: #6b6b6b;
    /* Pure brown accent */
    --accent-from: #5A3A1E;
    /* deep neutral brown */
    --accent-to: #7A4A28;
    /* soft brown highlight */
    --accent-glow: 0 4px 16px rgba(90, 58, 30, 0.25);
    --glass: rgba(255, 255, 255, 0.6);
    --header-height: 76px;
}

.dark {
    --bg: #0f1113;
    --card: #141516;
    --text: #f3f4f6;
    --muted: #bdbdbd;
    --glass: rgba(12, 12, 12, 0.5);

    /* Deep glowing brown */
    --accent-from: #6B3F1D;
    --accent-to: #8B5A2B;
    --accent-glow: 0 6px 18px rgba(107, 63, 29, 0.35);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease-in-out;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    padding-top: var(--header-height);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 0 1.5rem;
    transition: all 0.3s ease;
}

.dark header {
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.95), rgba(20, 20, 20, 0.9));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
}

.logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-from), var(--accent-to));
    color: white;
    font-weight: 800;
    font-size: 18px;
}

.logo-text {
    font-size: 18px;
    transition: font-size 0.3s ease;
}

.logo-tagline {
    font-size: 12px;
    color: var(--muted);
}

/* For dark mode - turn black to white */
.dark .logo img {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

/* Optional: Add a subtle glow in dark mode */
.dark .logo img:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

/* Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.desktop-nav a {
    color: var(--text);
    text-decoration: none;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    background: var(--glass);

}

.desktop-nav a.active {
    font-weight: 600;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.theme-toggle {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s ease;
    font-size: 1.2rem;
}

.theme-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

.dark .theme-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--accent-to);
    cursor: pointer;
    font-size: 1.2rem;
    color: white;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-from), var(--accent-to));
    z-index: 1001;
    padding: 1.5rem;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav a {
    color: white;
    text-decoration: none;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.2s ease;
}

.mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.15);
}

.close-menu {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Demo Content */
.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.content-section {
    margin-bottom: 3rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text);
}

p {
    margin-bottom: 1rem;
    color: var(--muted);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0 1rem;
    }

    .logo-text {
        font-size: 16px;
    }

    .logo-mark {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .logo-tagline {
        font-size: 10px;
    }
}

/* Shrink header on scroll */
header.shrink {
    height: 60px;
}

header.shrink .logo-text {
    font-size: 16px;
}

header.shrink .logo-mark {
    width: 38px;
    height: 38px;
    font-size: 16px;
}

.accent-btn {
    padding: .8rem 1.2rem;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    background: linear-gradient(90deg, var(--accent-from), var(--accent-to));
    color: white !important;
    box-shadow: var(--accent-glow);
    text-decoration: none;
    display: inline-block;
}

.accent-btn:hover {
    cursor: pointer;
    background: linear-gradient(90deg, var(--accent-to), var(--accent-from)) !important;
    transition: 0.3s ease-in-out;
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
    padding: 2rem 1rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(93, 64, 55, 0.85) 0%,
            rgba(121, 85, 72, 0.75) 100%);
}

.dark .hero-overlay {
    background: linear-gradient(135deg,
            rgba(93, 64, 55, 0.9) 0%,
            rgba(121, 85, 72, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.dark .hero-content {
    background: rgba(20, 20, 20, 0.85);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-text {
    text-align: center;
    color: var(--text);
}

.hero h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin: 0 0 1rem;
    line-height: 1.2;
    color: var(--text);
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0 0 2rem;
    color: var(--muted);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.accent-btn {
    padding: 1rem 2rem;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent-from), var(--accent-to));
    color: white;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    box-shadow: var(--accent-glow);
}

.accent-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(93, 64, 55, 0.3);
}

.secondary-btn {
    padding: 1rem 2rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--accent-from);
    text-decoration: none;
    font-weight: 600;
    color: var(--accent-from);
    display: inline-block;
    transition: all 0.3s ease;
}

.dark .secondary-btn {
    background: rgba(30, 30, 30, 0.9);
    color: white;
    border-color: white;
}

.secondary-btn:hover {
    background: var(--accent-from);
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        min-height: 500px;
        padding: 1rem;
    }

    .hero-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .hero h1 {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .accent-btn,
    .secondary-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 450px;
    }

    .hero-content {
        padding: 1.5rem 1rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}



/* Modern Section Heading Styles */
.section-heading {
    position: relative;
    margin-bottom: 1rem;
}

.section-preheading {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-from);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-from), var(--accent-to));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-from), var(--accent-to));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    color: var(--text);
    margin-top: 1.5rem;
}

/* Border Accent Style */
.heading-border-accent {
    padding: 2rem;
    border-left: 5px solid var(--accent-from);
}

/* About Content */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;

}

section {
    padding: 48px 1rem 64px
}

.about-text {
    padding-right: 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-box {
    /* background: rgba(255, 126, 0, 0.1); */
    background: var(--accent-to);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.404);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: white;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background-image: url('https://lh7-rt.googleusercontent.com/docsz/AD_4nXfAq9NQcR622tQeOGhFKGuRngJ9rcRq_spSYDDxM-xfNOjk12B_H6ThSn_r3DL30iYHIa1c15yPiylu2F8UcZUcs4ZkdE5fxeRHACMoYcwJu_Uc8OuJrUA6G6PlAzNmNhvtK3wyHw?key=mmgu0idZOPYZZdNK8qwazQ');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0);
    font-size: 1.2rem;
}

@media(max-width: 968px) {

    .image-placeholder {
        display: none;
    }
}

/* Values Section */
.values-section {
    margin-top: 4rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    padding: 48px 1rem 64px;
}

.value-card {
    background: var(--card);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(213, 213, 213, 0.5);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: black;
}

.value-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-from), var(--accent-to));
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.value-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.value-description {
    color: var(--muted);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .heading-border-accent {
        padding: 1.5rem;
    }
}





/* Services Section */
/* Bento Grid Styles */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
    margin-top: 3rem;
}

.bento-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.bento-item.large {
    grid-column: span 2;
}

.bento-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.bento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bento-item:hover .bento-image img {
    transform: scale(1.05);
}

.bento-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 1.5rem;
    color: white;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.bento-item:hover .bento-overlay {
    transform: translateY(0);
}

.bento-overlay h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.4rem;
}

.bento-overlay p {
    margin: 0 0 1rem 0;
    opacity: 0;
    max-height: 0;
    transition: all 0.3s ease;
    color: var(--white);
}

.bento-item:hover .bento-overlay p {
    opacity: 1;
    max-height: 100px;
}

.bento-btn {
    background: linear-gradient(90deg, var(--accent-from), var(--accent-to));
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.bento-item:hover .bento-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Service Modal */
.service-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-modal.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--card);
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.service-modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    color: var(--text);
    background: rgba(0, 0, 0, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-body {
    padding: 2rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-item.large {
        grid-column: span 1;
    }

    .bento-overlay p {
        opacity: 1;
        max-height: 100px;
    }

    .bento-btn {
        opacity: 1;
        transform: translateY(0);
    }
}


/* References Section */
/* Filter Controls */
.references-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 2rem 0 3rem;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: var(--card);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--text);
}

.dark .filter-btn {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(90deg, var(--accent-from), var(--accent-to));
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--accent-glow);
}

/* Gallery Grid */
.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.reference-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reference-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.reference-image {
    position: relative;
    overflow: hidden;
    height: 558px;
    /* increase freely */
    border-radius: 14px;
}

.reference-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}


.reference-item:hover .reference-image img {
    transform: scale(1.05);
}

.reference-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reference-item:hover .reference-overlay {
    opacity: 1;
}

.reference-category {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reference-view {
    background: rgba(255, 255, 255, 0.9);
    color: var(--muted);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.reference-view:hover {
    background: white;
    transform: translateY(-2px);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
}

.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 1rem;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .references-filter {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .references-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }

    .reference-overlay {
        padding: 1rem;
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .references-grid {
        grid-template-columns: 1fr;
    }
}

/* career */
/* Career Section Styles */
.images-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Mobile */
@media (max-width: 768px) {
    .images-wrapper {
        grid-template-columns: 1fr;
    }
}

.career-section {

    position: relative;
    overflow: hidden;
}

.career-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.career-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: center;
}

.career-text {
    position: relative;
}

.career-subheading {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-from);
    margin-bottom: 1rem;
    font-style: italic;
}

.career-timeline {
    position: relative;
    padding-left: 3rem;
}

.career-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, var(--accent-from), var(--accent-to));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3.4rem;
    top: 0.5rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-from), var(--accent-to));
    border: 4px solid #0f1113;
    box-shadow: 0 0 0 2px var(--accent-from);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-from);
    margin-bottom: 0.5rem;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 3px solid var(--accent-from);
    backdrop-filter: blur(10px);
}

.timeline-content p {
    margin: 0;
    color: var(--text);
    line-height: 1.7;
}

.career-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.career-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 126, 0, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 126, 0, 0.2);
}



.career-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 126, 0, 0.2), rgba(255, 72, 0, 0.2));
    z-index: 1;
    mix-blend-mode: overlay;
}

.image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.team-quote {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--accent-from), var(--accent-to));
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    max-width: 300px;
    box-shadow: 0 10px 30px rgba(255, 126, 0, 0.3);
    z-index: 2;
}

.quote-text {
    font-style: italic;
    margin: 0;
    line-height: 1.5;
    color: white;
}

.quote-author {
    margin-top: 0.5rem;
    font-weight: 600;
}

/* Floating elements */
.floating-element {
    position: absolute;
    z-index: -1;
    opacity: 0.1;
}

.floating-1 {
    top: 20%;
    left: 5%;
    width: 100px;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M20,20 L80,20 L80,80 L20,80 Z' stroke='%23ff7e00' fill='none' stroke-width='2'/%3E%3C/svg%3E");
}

.floating-2 {
    bottom: 10%;
    right: 10%;
    width: 150px;
    height: 150px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='40' stroke='%23ff7e00' fill='none' stroke-width='2'/%3E%3C/svg%3E");
}

/* Responsive Design */
@media (max-width: 968px) {
    .career-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .career-timeline {
        padding-left: 2rem;
    }

    .timeline-item::before {
        left: -2.4rem;
    }
}

@media (max-width: 768px) {
    .career-stats {
        grid-template-columns: 1fr;
    }

    .team-quote {
        position: relative;
        right: 0;
        margin-top: 2rem;
        max-width: 100%;
    }

    .career-timeline::before {
        left: 0.5rem;
    }

    .timeline-item::before {
        left: -1.9rem;
    }
}

/* TEAM */
/* Team Section Styles */
.team-section {
    position: relative;
    overflow: hidden;
}

.team-carousel {
    position: relative;
    margin-top: 3rem;
    padding: 0 3rem;
}

.carousel-container {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    gap: 2rem;
    padding: 1rem 0;
}

.carousel-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

.team-member {
    flex: 0 0 calc(33.333% - 1.5rem);
    background: var(--card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.member-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 70%);
    opacity: 0.7;
}

.member-info {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.member-name {
    font-size: 1.4rem;
    margin: 0 0 0.5rem 0;
    color: var(--text);
}

.member-role {
    color: var(--accent-from);
    font-weight: 600;
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
}

.member-quote {
    margin: 1rem 0;
    padding: 1rem;
    background: var(--accent-to);
    border-left: 3px solid var(--accent-from);
    border-radius: 4px;
}

.member-quote p {
    margin: 0;
    font-style: italic;
    color: white;
    line-height: 1.5;
    font-size: 12px;
}

.member-toggle {
    background: linear-gradient(90deg, var(--accent-from), var(--accent-to));
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.member-toggle:hover {
    transform: translateY(-2px);
    box-shadow: var(--accent-glow);
}

.member-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.member-details.active {
    max-height: 500px;
}

.details-content {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.03);
}

.details-content h4 {
    color: var(--accent-from);
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
}

.details-content p {
    margin: 0 0 1rem 0;
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.details-content p:last-child {
    margin-bottom: 0;
}

/* Carousel Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--card);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-control:hover {
    background: linear-gradient(90deg, var(--accent-from), var(--accent-to));
    color: white;
}

.carousel-control.prev {
    left: 0;
}

.carousel-control.next {
    right: 0;
}

.carousel-control svg {
    width: 24px;
    height: 24px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 0.5rem;
}

.carousel-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-to);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicators .indicator.active {
    background: var(--accent-to);
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .team-member {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .team-carousel {
        padding: 0 1rem;
    }

    .team-member {
        flex: 0 0 100%;
    }

    .carousel-control {
        width: 40px;
        height: 40px;
    }

    .member-image {
        height: 250px;
    }
}



/* Contact Section */

.contact-section .contact-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem;
    margin-top: 3rem;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--card);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-input,
.form-textarea {
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: transparent;
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-from);
    box-shadow: 0 0 0 3px rgba(255, 126, 0, 0.1);
}

.form-textarea {
    min-height: 250px;
    resize: vertical;
    resize: none;
}

.form-actions {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    justify-content: flex-end;
    margin-top: 1rem;
}

select.form-input {
    appearance: none;
    cursor: pointer;
}


/* FAQ Section */

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
}

.dark .faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-from);
}

.faq-question span {
    flex: 1;
    margin-right: 1rem;
}

.faq-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1rem 1.5rem;
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-question {
        padding: 1.2rem 0.8rem;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 0.8rem 1.2rem;
    }
}



/* Contact Info */
.contact-info {
    padding: 2rem;
    border-radius: 12px;
    background: var(--card);
    min-height: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-company {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.contact-detail {
    margin: 0.5rem 0;
    color: var(--muted);
    line-height: 1.6;
}

.contact-link-container {
    margin-top: 1.5rem;
}

.contact-link {
    text-decoration: none;
    color: var(--muted);
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-from);
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-section .contact-grid {
        grid-template-columns: 1fr;
        /* force stack */
        gap: 1.5rem;
    }

    .contact-section .contact-info {
        order: 2;
        /* put info below form */
        min-height: auto;
    }
}

@media (max-width: 480px) {

    .contact-section .contact-form,
    .contact-section .contact-info {
        padding: 1.5rem;
    }

    .form-actions {
        justify-content: center;
    }

    .accent-btn {
        width: 100%;
        text-align: center;
    }
}

/* Location Section */

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.map-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.location-map {
    border-radius: 12px;
}

.location-info {
    padding: 2rem;
    background: var(--card);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.location-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.location-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-to);
    border-radius: 8px;
    flex-shrink: 0;
}

.location-icon svg {
    width: 20px;
    height: 20px;
}

.location-text {
    color: var(--muted);
}

.location-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 968px) {
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        height: 300px;
        order: -1;
    }
}

@media (max-width: 480px) {
    .location-info {
        padding: 1.5rem;
    }

    .location-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

/* Footer Styles */
.footer {
    background: var(--card);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 4rem;
}

.dark .footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-logo .logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-from), var(--accent-to));
    color: white;
    font-weight: 800;
    font-size: 16px;
}

.footer-logo .logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
}

/* For dark mode - turn black to white */
.dark .footer-logo img {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

/* Optional: Add a subtle glow in dark mode */
.dark .footer-logo img:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

.footer-tagline {
    color: var(--muted);
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-contact p,
.footer-legal p {
    margin: 0.5rem 0;
    color: var(--muted);
    line-height: 1.5;
}

.footer-heading {
    font-weight: 600;
    color: var(--text) !important;
    margin-bottom: 1rem !important;
}

.legal-link {
    display: block;
    color: var(--muted);
    text-decoration: none;
    margin: 0.3rem 0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--accent-from);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--muted);
    font-size: 0.9rem;
}

.dark .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-tagline {
        max-width: none;
    }
}