.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 85px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.15);  /* more visible glass tint */
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 0 0 20px 20px;
    z-index: 1000;
    color: #f0f0f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25); /* depth */
}

.logo {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.logo img {
    width: 40px;
    height: auto;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navLinks {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 999;
}

.navLinks img {
    width: 30px;
    height: auto;
    display: none; /* Hide logo in desktop view */
}

.navLinks a {
    text-decoration: none;
    color: #000000;
    font-size: 0.8rem;
    transition: transform 0.3s ease-in-out;
}

.navLinks a:hover {
    color: #cc4e00;
}

.navLinks a i {
    display: none;
    font-size: 16px;
    margin-right: 6px;
    color: #000;
}

#CTO i {
    color: #fff;
    font-size: 16px;
}

#CTO {
    padding: 10px 12px;
    background: #000000;
    color: #ffffff;
    border-radius: 8px;
}

#CTO:hover {
    background: #cc4e00;
}

.main-header .icon {
    display: none;
    font-size: 18px;
    cursor: pointer;
    color: #000;
    z-index: 1;
}

.main-header .icon i {
    font-size: 22px;
    text-decoration: none;
    margin: 0 8px;
    color:#000;
    transition: color 0.3s ease;
}

.signin i {
    color: #000;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.signin i:hover {
    color: #cc4e00;
}

/* Responsive */
@media (max-width: 768px) {
    .main-header {
        height: 70px;
    }

    .main-header .logo img {
        width: 30px;
        height: auto;
    }

    .navLinks {
        position: fixed;
        top: 0;
        left: -100%;
        width: 200px;
        height: calc(100vh - 85px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        border-radius: 0 0 20px 0;
        transition: left 0.3s ease-in-out;
    }

    .navLinks img {
        display: block; /* Show logo in mobile view */
        margin-bottom: 20px;
    }

    .navLinks a i {
        display: inline-block;
    }

    .navLinks a {
        font-size: 0.8rem;
        text-align: right;
        margin-bottom: 15px;
    }

    .navLinks.show {
        left: 0;
    }

    .main-header .icon {
        display: block; /* Show hamburger */
    }
}
