* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #0a0a1f;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-left: auto;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #7BF0BB;
}

.btn-book {
    background: #7BF0BB;
    color: #0a0a1f;
    border: none;
    padding: 12px;
    border-radius: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-decoration: none;
}

.btn-book:hover {
    background: #5ee0a5;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: 0.3s;
}

/* Hero Section */
.hero-projects {
    background: #010027;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: -45px;
    left: 194px;
    width: 837px;
    height: 819.05px;
    background-image: url('Images/dotPattern.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
}

.hero-projects .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.hero-left {
    display: flex;
    align-items: center;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 72px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.05em;
    color: #ffffff;
}

.hero-right {
    display: flex;
    justify-content: flex-end;
}

.hero-card {
    background: #ffffff;
    color: #0a0a1f;
    width: 402px;
    height: 354px;
    padding: 29px 41px;
    gap: 10px;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-card h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.05em;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.need-demo {
    font-family: 'Switzer', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #0a0a1f;
}

.btn-book-meeting {
    background: #7BF0BB;
    color: #0a0a1f;
    border: none;
    padding: 12px 24px;
    border-radius: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-decoration: none;
}

.btn-book-meeting:hover {
    background: #5ee0a5;
}

.scroll-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(75%);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.scroll-indicator:hover {
    opacity: 0.8;
}

.arrow-down {
    display: block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Projects Section */
.projects-list {
    background: #F7F7F7;
    color: #0a0a1f;
    padding: 60px 0 100px 0;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 100%;
    text-transform: uppercase;
    margin-bottom: 60px;
    padding-bottom: 20px;
    border-bottom: 2px solid #E0E0E0;
    max-width: 209px;
}

.projects-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.project-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
}

.project-sidebar::-webkit-scrollbar {
    width: 4px;
}

.project-sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.project-sidebar::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 2px;
}

.project-sidebar::-webkit-scrollbar-thumb:hover {
    background: #666;
}

.project-item {
    cursor: pointer;
    transition: all 0.3s;
    padding: 24px 20px;
    position: relative;
    background: transparent;
}

.project-item:hover {
    background: #ececec;
}

.project-item.active {
    background: transparent;
    border-left: 3px solid #999999;
}

.project-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0;
    color: #999;
    display: block;
    margin-bottom: 8px;
}

.project-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    margin-bottom: 8px;
    color: #0a0a1f;
}

.project-desc {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    color: #010027;
}

.arrow-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.project-main {
    background: #ffffff;
    border-radius: 8px;
    padding: 60px;
    min-height: auto;
}

.project-card-main {
    max-width: 800px;
    display: none;
}

.project-card-main.active {
    display: block;
}

.project-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.project-icon-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.project-logo-inline {
    max-width: 120px;
    height: auto;
    object-fit: contain;
}

.nemrah-logo,
.mavi-logo {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 8px;
}

.header-line {
    flex: 1;
    height: 0;
    border-top: 1px solid #E0E0E0;
    max-width: 577px;
}

.project-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    margin-bottom: 24px;
    color: #0a0a1f;
}

.project-description {
    font-family: 'Switzer', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0;
    color: #3C3C3C;
    margin-bottom: 32px;
}

.project-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

.project-left {
    flex: 1;
}

.project-right {
    display: flex;
    align-items: flex-end;
    padding-bottom: 0;
}

.project-quote {
    background: transparent;
    padding: 0;
    margin-bottom: 32px;
}

.project-quote p {
    font-family: 'Switzer', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.0175em;
    color: #647287;
}

.project-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.05em;
    color: #8450EF;
    margin-bottom: 4px;
}

.author-info p {
    font-family: 'Switzer', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #303842;
}

/* Project Features List */
.project-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.project-features li {
    font-family: 'Switzer', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    color: #3C3C3C;
    padding-left: 0;
    margin-bottom: 8px;
}

.project-features li:before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #3C3C3C;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
}

/* Project Results */
.project-results {
    margin-top: 32px;
}

.results-badge {
    display: inline-block;
    background: #0a0a1f;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.project-results p {
    font-family: 'Switzer', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    color: #3C3C3C;
    margin: 0;
}

.btn-visit {
    background: #7BF0BB;
    color: #0a0a1f;
    border: none;
    width: 122px;
    height: 38px;
    padding: 12px;
    gap: 10px;
    border-radius: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-visit:hover {
    background: #5ee0a5;
}

/* Industries Section */
.industries {
    background: #010027;
    color: #ffffff;
    padding: 100px 0;
}

.industries-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.05em;
    text-align: center;
    margin-bottom: 60px;
}

.highlight-green {
    color: #7BF0BB;
}

.industries-grid-top {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.industries-grid-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.industry-card {
    background: #ffffff;
    padding: 40px 24px;
    border-radius: 0;
    text-align: center;
    transition: transform 0.3s;
}

.industry-card:hover {
    transform: translateY(-5px);
}

.industry-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.industry-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #161922;
}

.industry-card.cta-card {
    background: #7BF0BB;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.industry-card.cta-card h3 {
    color: #0a0a1f;
    font-size: 20px;
    line-height: 130%;
}

.btn-book-dark {
    background: #0A0D14;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-decoration: none;
}

.btn-book-dark:hover {
    background: #1a1a2f;
}

/* Transform Section */
.transform {
    background: #ffffff;
    color: #0a0a1f;
    padding: 100px 0;
    text-align: center;
}

.transform-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.05em;
    text-align: center;
    margin-bottom: 24px;
}

.transform-subtitle {
    font-family: 'Switzer', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: #010027;
    color: #ffffff;
    padding: 60px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-copyright a {
    color: #F8FAFC;
    text-decoration: none;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.3s;
    position: relative;
}

.social-icon:hover {
    opacity: 0.8;
}

.social-icon-img {
    width: 24px;
    height: 23.85px;
    object-fit: contain;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #7BF0BB;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #7BF0BB;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: #0a0a1f;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 40px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .btn-book {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-card {
        width: 100%;
        height: auto;
        padding: 32px 24px;
    }

    .hero-card h2 {
        font-size: 28px;
    }

    .hero-background {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        opacity: 0.3;
    }

    .scroll-indicator {
        bottom: -50px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .project-main {
        padding: 32px;
    }

    .industries-grid-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .industries-grid-bottom {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .transform-title {
        font-size: 36px;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-card h2 {
        font-size: 24px;
    }

    .hero-card {
        padding: 24px;
    }

    .scroll-indicator {
        bottom: -40px;
    }

    .project-main {
        padding: 24px;
    }

    .project-card-main h2 {
        font-size: 28px;
    }

    .industries-grid-top {
        grid-template-columns: 1fr;
    }

    .industries-grid-bottom {
        grid-template-columns: 1fr;
    }

    .transform-title {
        font-size: 28px;
    }

    .footer-links {
        flex-direction: column;
        gap: 32px;
    }
}
