body, html {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
  /* Skip to content link - properly hidden for accessibility */
        .skip-link {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
            background: #1a1a2e;
            color: #ffffff;
            z-index: 9999;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 0 0 4px 4px;
        }
        .skip-link:focus {
            clip: auto;
            width: auto;
            height: auto;
            margin: 0;
            padding: 12px 20px;
            left: 50%;
            top: 0;
            transform: translateX(-50%);
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }
        /* Ensure main content can receive focus */
        #main-content:focus {
            outline: none;
        }
.drishti-header {
    width: 100%;
}

.top-bar {
    background-color: #120e2b;
    padding: 12px 0;
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 20px;
}

.call-trade {
    color: #ffffff;
    font-size: 13px;
    margin-right: 20px;
    font-weight: normal;
}

.btn-online-trading {
    background: linear-gradient(to bottom, #fceb5d, #c4a100);
    color: #000;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #7d6b1b;
    box-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.btn-online-trading:hover {
    background: linear-gradient(to bottom, #fff58c, #e0b800);
}

.main-nav {
    background-color: #24223f;
    border-bottom: 1px solid #1a162f;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.logo-img {
    height: 65px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #fceb5d;
}

.ticker {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    padding: 6px 0;
    font-size: 13px;
    font-weight: 600;
}

.ticker-purple {
    background-color: #a491f6;
    color: #3f2f84;
}

.ticker-yellow {
    background-color: #fed02f;
    color: #554400;
}

.ticker-content {
    display: block;
    width: 100%;
}

.menu-toggle-btn {
    display: none;
    background: none;
    border: none;
    padding: 0;
}

.menu-toggle {
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 850px) {
    .main-nav-content {
        flex-wrap: wrap;
    }
    
    .menu-toggle-btn {
        display: block;
    }
    
    .nav-links {
        display: none; /* Hidden by default on mobile */
        width: 100%;
        flex-direction: column;
        gap: 0;
        margin-top: 10px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        width: 100%;
        padding: 10px 0;
        border-top: 1px solid rgba(255,255,255,0.1);
        text-align: center;
    }
    
    .top-bar-content {
        justify-content: space-between;
    }
}
